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 | 6d2eb77555bee021ef27bf40101f8eb3fc931357 (patch) | |
tree | 0481d7d3dc7dab314dde4d70fbce84ea22cdb8bd /src | |
parent | 40cc536307fd17d8f11a933b20dfd28f4ab6317d (diff) | |
download | tor-6d2eb77555bee021ef27bf40101f8eb3fc931357.tar.gz tor-6d2eb77555bee021ef27bf40101f8eb3fc931357.zip |
Whitespace fix
svn:r6816
Diffstat (limited to 'src')
-rw-r--r-- | src/common/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c index 39efee9cd2..98d6867bc6 100644 --- a/src/common/util.c +++ b/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, |