mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
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:
parent
02d393f248
commit
d5c8f98c5e
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user