diff options
| -rw-r--r-- | src/cc-compat.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cc-compat.h b/src/cc-compat.h index 21f321124..6bdc65145 100644 --- a/src/cc-compat.h +++ b/src/cc-compat.h @@ -44,10 +44,10 @@ #endif #if defined(__GNUC__) -# define GIT_UNUSED(x) \ - do { \ - typeof(x) _unused __attribute__((unused)); \ - _unused = (x); \ +# define GIT_UNUSED(x) \ + do { \ + typeof(x) _unused __attribute__((unused)); \ + _unused = (x); \ } while (0) #else # define GIT_UNUSED(x) ((void)(x)) |
