tst-mallinfo2.c: Remove useless trailing semicolon for macro

Macros should not use a trailing semicolon, so remove it.

Reviewed-by: DJ Delorie <dj@redhat.com>
This commit is contained in:
Yang Xu 2021-02-01 19:19:43 +01:00 committed by Arjun Shankar
parent 02d393f248
commit d5c8f98c5e

View File

@ -30,7 +30,7 @@ static void
print_mi (const char *msg, struct mallinfo2 *m)
{
printf("\n%s...\n", msg);
#define P(f) printf("%s: %zu\n", #f, m->f);
#define P(f) printf("%s: %zu\n", #f, m->f)
P(arena);
P(ordblks);
P(smblks);