]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
compiler: s/__fallthrough__/__fallthrough/g
authorChristian Brauner <christian.brauner@ubuntu.com>
Sat, 22 Sep 2018 08:53:52 +0000 (10:53 +0200)
committerChristian Brauner <christian.brauner@ubuntu.com>
Sun, 23 Sep 2018 10:37:41 +0000 (12:37 +0200)
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
src/lxc/compiler.h

index f29ecbed21157144fbe346979d6ae8fbff57c165..c76b9317e3e3c6c2f16a0a95ecab9f684df8f9d2 100644 (file)
@@ -33,9 +33,9 @@
 #endif
 
 #if defined(__GNUC__) && __GNUC__ >= 7 || defined(__clang__)
-#define __fallthrough__ __attribute__((fallthrough))
+#define __fallthrough __attribute__((fallthrough))
 #else
-#define __fallthrough__
+#define __fallthrough
 #endif
 
 #ifndef _noreturn_