From: Christian Brauner Date: Sat, 22 Sep 2018 08:53:52 +0000 (+0200) Subject: compiler: s/__fallthrough__/__fallthrough/g X-Git-Tag: lxc-3.1.0~94^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cab25bd54d31c0b575f5da703ef3370c54e6a9f2;p=thirdparty%2Flxc.git compiler: s/__fallthrough__/__fallthrough/g Signed-off-by: Christian Brauner --- diff --git a/src/lxc/compiler.h b/src/lxc/compiler.h index f29ecbed2..c76b9317e 100644 --- a/src/lxc/compiler.h +++ b/src/lxc/compiler.h @@ -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_