diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-02-12 22:27:09 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-02-12 22:27:09 +0000 |
commit | ae4f0467c8006d4369d9127a64d525046ed2747a (patch) | |
tree | b433a54b5222e2b9868fbf9ca87eb643d1dac7fe | |
parent | f03ce29c6d3547d6f2b02059658c4b561c425d82 (diff) | |
download | tor-ae4f0467c8006d4369d9127a64d525046ed2747a.tar tor-ae4f0467c8006d4369d9127a64d525046ed2747a.tar.gz |
enforce whitespace style
svn:r5984
-rw-r--r-- | src/or/connection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 19f9165a7..7d50d7e03 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -1038,7 +1038,8 @@ connection_bucket_write_limit(connection_t *conn) /** Return 1 if the global write bucket has no bytes in it, * or return 0 if it does. */ -int global_write_bucket_empty(void) +int +global_write_bucket_empty(void) { return global_write_bucket <= 0; } |