Macros should not use a trailing semicolon

This commit is contained in:
Dimitri Papadopoulos
2023-05-23 21:24:10 +02:00
parent bdfe4c0c98
commit b7ec6e3f09

View File

@@ -44,7 +44,7 @@ extern "C" {
: (fprintf(stderr, "%s: %u: Assertion: `%s' failed. %s\n", __FILE__, \
__LINE__, FUZZ_QUOTE(cond), (msg)), \
abort()))
#define FUZZ_ASSERT(cond) FUZZ_ASSERT_MSG((cond), "");
#define FUZZ_ASSERT(cond) FUZZ_ASSERT_MSG((cond), "")
#if defined(__GNUC__)
#define FUZZ_STATIC static __inline __attribute__((unused))