From: Yang Xu Date: Mon, 1 Feb 2021 18:19:43 +0000 (+0100) Subject: tst-mallinfo2.c: Remove useless trailing semicolon for macro X-Git-Tag: glibc-2.34~999 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=d5c8f98c5e6de207790d3e9edadf5bda4aa2521f;p=glibc.git tst-mallinfo2.c: Remove useless trailing semicolon for macro Macros should not use a trailing semicolon, so remove it. Reviewed-by: DJ Delorie --- diff --git a/malloc/tst-mallinfo2.c b/malloc/tst-mallinfo2.c index 48e65cb7d7..59a15cf7a8 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);