Remove semicolon from AFS_NORETURN
[openafs.git] / src / config / stds.h
index eb187b8..8fbd509 100644 (file)
@@ -336,11 +336,11 @@ hdr_static_inline(unsigned long) afs_printable_uint32_lu(afs_uint32 d) { return
 #if defined(__GNUC__) && __GNUC__ > 2
 #define AFS_UNUSED __attribute__((unused))
 #define AFS_ATTRIBUTE_FORMAT(style,x,y) __attribute__((format(style, x, y)))
-#define AFS_NORETURN __attribute__((__noreturn__));
+#define AFS_NORETURN __attribute__((__noreturn__))
 #elif defined (__clang__)
 #define AFS_UNUSED __attribute__((unused))
 #define AFS_ATTRIBUTE_FORMAT(style,x,y) __attribute__((format(style, x, y)))
-#define AFS_NORETURN __attribute__((__noreturn__));
+#define AFS_NORETURN __attribute__((__noreturn__))
 #else
 #define AFS_UNUSED
 #define AFS_ATTRIBUTE_FORMAT(style,x,y)