diff options
-rw-r--r-- | trunk/src/common/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/trunk/src/common/util.c b/trunk/src/common/util.c index 39efee9cd2..98d6867bc6 100644 --- a/trunk/src/common/util.c +++ b/trunk/src/common/util.c @@ -429,7 +429,8 @@ find_whitespace(const char *s) } /** Return true iff the 'len' bytes at 'mem' are all zero. */ -int tor_mem_is_zero(const char *mem, size_t len) +int +tor_mem_is_zero(const char *mem, size_t len) { static const char ZERO[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, |