diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-11-28 09:05:49 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-11-28 09:05:49 +0000 |
commit | 6f5dbefa7efe0c0c86928777b8821b3fdc91cf45 (patch) | |
tree | e92106bd8cac85684983daf62d952a9d8e6b8f18 /src/common/log.h | |
parent | 67dc7baa59e2b38a6720d843b54257ca0dd9e722 (diff) | |
download | tor-6f5dbefa7efe0c0c86928777b8821b3fdc91cf45.tar.gz tor-6f5dbefa7efe0c0c86928777b8821b3fdc91cf45.zip |
Normalize space: add one between every control keyword and control clause.
svn:r3003
Diffstat (limited to 'src/common/log.h')
-rw-r--r-- | src/common/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.h b/src/common/log.h index 968686ef37..07e865e689 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -90,7 +90,7 @@ void _log_fn(int severity, const char *funcname, const char *format, ...) extern const char *_log_fn_function_name; void _log_fn(int severity, const char *format, ...); /* We abuse the comma operator here, since we can't use the standard - * do {...} while(0) trick to wrap this macro, since the macro can't take + * do {...} while (0) trick to wrap this macro, since the macro can't take * arguments. */ #define log_fn (_log_fn_function_name=__FUNCTION__),_log_fn #endif |