Removed typo in the definition of macro FALL_THROUGH

This commit is contained in:
Daniele Lacamera
2018-09-14 11:02:23 +02:00
parent 139a08a98e
commit a7ab98be69

View File

@@ -183,7 +183,7 @@
/* GCC 7 has new switch() fall-through detection */
#if defined(__GNUC__)
#if ((__GNUC__ > 7) || ((__GNUC__ == 7) && (__GNUC_MINOR__ >= 1)))
#define FALL_THROUGH __attribute__ ((fallthrough));
#define FALL_THROUGH __attribute__ ((fallthrough))
#endif
#endif
#ifndef FALL_THROUGH