tests: remove extra semicolon in macro

This commit is contained in:
Jonas Nick 2023-04-21 20:21:28 +00:00
parent 1f33bb2b1c
commit 3858bad2c6
No known key found for this signature in database
GPG Key ID: 4861DBF262123605

View File

@ -48,7 +48,8 @@ static int all_bytes_equal(const void* s, unsigned char value, size_t n) {
#define PRINT_BUF(buf, len) do { \
printf("%s[%lu] = ", #buf, (unsigned long)len); \
print_buf_plain(buf, len); \
} while(0);
} while(0)
static void print_buf_plain(const unsigned char *buf, size_t len) {
size_t i;
printf("{");