From 84afd2252f02f444cd1a22aeee70641a5268b306 Mon Sep 17 00:00:00 2001 From: Braden Obrzut Date: Fri, 26 Dec 2014 20:10:41 -0500 Subject: [PATCH] - Fixed missing right paren on the first _Pragma from last commit. --- src/zstring.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zstring.h b/src/zstring.h index fe7ee72cf..0104020fa 100644 --- a/src/zstring.h +++ b/src/zstring.h @@ -49,13 +49,13 @@ #ifdef __clang__ #define IGNORE_FORMAT_PRE \ - _Pragma("GCC diagnostic push" \ + _Pragma("GCC diagnostic push") \ _Pragma("GCC diagnostic ignored \"-Wformat-invalid-specifier\"") \ _Pragma("GCC diagnostic ignored \"-Wformat-extra-args\"") #define IGNORE_FORMAT_POST _Pragma("GCC diagnostic pop") #elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ >= 6))) #define IGNORE_FORMAT_PRE \ - _Pragma("GCC diagnostic push" \ + _Pragma("GCC diagnostic push") \ _Pragma("GCC diagnostic ignored \"-Wformat=\"") \ _Pragma("GCC diagnostic ignored \"-Wformat-extra-args\"") #define IGNORE_FORMAT_POST _Pragma("GCC diagnostic pop")