include: remove trailing semicolon from _Pragma() call
authorThomas Haller <thaller@redhat.com>
Mon, 21 Dec 2015 09:54:08 +0000 (10:54 +0100)
committerThomas Haller <thaller@redhat.com>
Thu, 24 Dec 2015 10:42:37 +0000 (11:42 +0100)
shared/nm-macros-internal.h

index b4d2d23..14430c4 100644 (file)
 
 #if defined (__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
 #define NM_PRAGMA_WARNING_DISABLE(warning) \
-        _Pragma("GCC diagnostic push"); \
+        _Pragma("GCC diagnostic push") \
         _Pragma(_NM_PRAGMA_WARNING_DO(warning))
 #elif defined (__clang__)
 #define NM_PRAGMA_WARNING_DISABLE(warning) \
-        _Pragma("clang diagnostic push"); \
+        _Pragma("clang diagnostic push") \
         _Pragma(_NM_PRAGMA_WARNING_DO(warning))
 #else
 #define NM_PRAGMA_WARNING_DISABLE(warning)