fix C --pedantic warnings

* extra semicolon in struct or union specified
* ISO C does not allow extra ‘;’ outside of a function
This commit is contained in:
Denis Pauk 2022-03-19 13:08:15 +02:00
parent 65f8c171c5
commit 12b27e631d
1 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ typedef unsigned char byte;
#ifdef _MSC_VER
#define PRINTF_ATTR(FMT, VARGS)
#else // at least GCC/mingw and clang support this
#define PRINTF_ATTR(FMT, VARGS) __attribute__((format(printf, FMT , VARGS )));
#define PRINTF_ATTR(FMT, VARGS) __attribute__((format(printf, FMT , VARGS )))
#endif
/* per-level limits */