1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-25 17:25:18 +03:00

fix typo in gcc7 fallback macro

This commit is contained in:
Jonathan Hudson 2017-09-08 20:44:38 +01:00
parent 14c4989e90
commit cb850da3c9

View file

@ -92,7 +92,7 @@ void * memcpy_fn ( void * destination, const void * source, size_t num ) asm("me
#endif
#if __GNUC__ >= 7
#define FALLTHROUGH __attribute__ ((fallthrough)
#define FALLTHROUGH __attribute__ ((fallthrough))
#else
#define FALLTHROUGH do {} while(0)
#endif