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:
Solomon Peachy 2025-05-17 18:40:47 -04:00
parent 39f86858c4
commit afcebf1b48

View file

@ -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