Explorar el Código

Fix a whitespace error

Nick Mathewson hace 15 años
padre
commit
441241c136
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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));
   }
 }