diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-07-23 07:19:49 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-07-23 07:19:49 +0000 |
commit | 25cc8ea576cdaf14188f58b01bc2f25cd8d74976 (patch) | |
tree | 1e72d7d98bc82bc75ba7422c57fc517cad049268 | |
parent | c6f749e90c08afe1c52c14af134668af8b94a3c1 (diff) | |
download | tor-25cc8ea576cdaf14188f58b01bc2f25cd8d74976.tar.gz tor-25cc8ea576cdaf14188f58b01bc2f25cd8d74976.zip |
Whitespace fix
svn:r6816
-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, |