Explorar el Código

whitespace fix

Nick Mathewson hace 7 años
padre
commit
daeb633825
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/common/crypto.c

+ 1 - 1
src/common/crypto.c

@@ -1707,7 +1707,7 @@ crypto_digest(char *digest, const char *m, size_t len)
 {
   tor_assert(m);
   tor_assert(digest);
-  if(SHA1((const unsigned char*)m,len,(unsigned char*)digest) == NULL)
+  if (SHA1((const unsigned char*)m,len,(unsigned char*)digest) == NULL)
     return -1;
   return 0;
 }