OSDN Git Service

Fix __attribute => __attribute__.
authorrelan <relan@users.noreply.github.com>
Fri, 21 Jun 2013 18:03:33 +0000 (18:03 +0000)
committerrelan <relan@users.noreply.github.com>
Mon, 24 Aug 2015 05:26:16 +0000 (08:26 +0300)
libexfat/compiler.h

index b52103b..3bb5278 100644 (file)
@@ -29,7 +29,7 @@
 #if defined(__clang__)
 
 #define PRINTF __attribute__((format(printf, 1, 2)))
-#define NORETURN __attribute((noreturn))
+#define NORETURN __attribute__((noreturn))
 #define PACKED __attribute__((packed))
 #if __has_extension(c_static_assert)
 #define USE_C11_STATIC_ASSERT
@@ -38,7 +38,7 @@
 #elif defined(__GNUC__)
 
 #define PRINTF __attribute__((format(printf, 1, 2)))
-#define NORETURN __attribute((noreturn))
+#define NORETURN __attribute__((noreturn))
 #define PACKED __attribute__((packed))
 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
 #define USE_C11_STATIC_ASSERT