From d5c8f98c5e6de207790d3e9edadf5bda4aa2521f Mon Sep 17 00:00:00 2001 From: Yang Xu Date: Mon, 1 Feb 2021 19:19:43 +0100 Subject: [PATCH] tst-mallinfo2.c: Remove useless trailing semicolon for macro Macros should not use a trailing semicolon, so remove it. Reviewed-by: DJ Delorie --- malloc/tst-mallinfo2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc/tst-mallinfo2.c b/malloc/tst-mallinfo2.c index 48e65cb..59a15cf 100644 --- a/malloc/tst-mallinfo2.c +++ b/malloc/tst-mallinfo2.c @@ -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); -- 2.7.4