mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
Fix sea of errors introduced in cde144233b
I swear I compiled this successfully; clearly I had not. Change-Id: Id604abeeeb895aa9c61acaad261b7190f0140089
This commit is contained in:
parent
39f86858c4
commit
afcebf1b48
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
|||
/* Support for some GCC extensions */
|
||||
|
||||
/* Compile time check of format for printf/scanf like functions */
|
||||
#ifdef __GNUC__ && __GNUC__ != 7
|
||||
#if defined(__GNUC__) && (__GNUC__ != 7)
|
||||
#define ATTRIBUTE_PRINTF(fmt, arg1) __attribute__( ( format( printf, fmt, arg1 ) ) )
|
||||
#define ATTRIBUTE_SCANF(fmt, arg1) __attribute__( ( format( scanf, fmt, arg1 ) ) )
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue