diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-11-22 23:28:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-11-22 23:28:26 +0000 |
commit | 22dba27d8dd55e3494775b9241e258e494caf5d3 (patch) | |
tree | 8e3e1a756c6efc65d8211e884bf5c5b9dd60dea1 /src/common/compat.h | |
parent | fe32c2d1412e7a3906fa4f0ae0f99f12de5b882b (diff) | |
download | tor-22dba27d8dd55e3494775b9241e258e494caf5d3.tar.gz tor-22dba27d8dd55e3494775b9241e258e494caf5d3.zip |
Normalize a few more kinds of whitespace. We now dislike:
- func (args)
- if (x){
This doesn't normalize if(x), for(x); while(x), and friends.
svn:r2943
Diffstat (limited to 'src/common/compat.h')
-rw-r--r-- | src/common/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.h b/src/common/compat.h index 5b0ed36a0c..f62e833544 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -35,7 +35,7 @@ /* GCC can check printf types on arbitrary functions. */ #ifdef __GNUC__ #define CHECK_PRINTF(formatIdx, firstArg) \ - __attribute__ ((format (printf, formatIdx, firstArg))) + __attribute__ ((format(printf, formatIdx, firstArg))) #else #define CHECK_PRINTF(formatIdx, firstArg) #endif |