summaryrefslogtreecommitdiff
path: root/zen/warn_static.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/warn_static.h')
-rw-r--r--zen/warn_static.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/warn_static.h b/zen/warn_static.h
index 1e942031..3f268ec3 100644
--- a/zen/warn_static.h
+++ b/zen/warn_static.h
@@ -19,7 +19,7 @@ Usage:
#define STATIC_WARNING_MAKE_STRINGIZE(NUM) STATIC_WARNING_MAKE_STRINGIZE_SUB(NUM)
#define warn_static(TXT) \
- __pragma(message (__FILE__ "(" STATIC_WARNING_MAKE_STRINGIZE(__LINE__) "): Warning: " ## TXT))
+ __pragma(message(__FILE__ "(" STATIC_WARNING_MAKE_STRINGIZE(__LINE__) "): Warning: " ## TXT))
#elif defined __GNUC__
#define STATIC_WARNING_CONCAT_SUB(X, Y) X ## Y
bgstack15