Browse Source

Fix a whitespace error

Nick Mathewson 15 years ago
parent
commit
441241c136
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/or/router.c

+ 2 - 1
src/or/router.c

@@ -150,7 +150,8 @@ assert_identity_keys_ok(void)
   } else {
     /* assert that we have set the client and server keys to be unequal */
     if (server_identitykey)
-      tor_assert(0!=crypto_pk_cmp_keys(client_identitykey, server_identitykey));
+       tor_assert(0!=crypto_pk_cmp_keys(client_identitykey,
+                                        server_identitykey));
   }
 }