mirror of git://sourceware.org/git/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 <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)
|
print_mi (const char *msg, struct mallinfo2 *m)
|
||||||
{
|
{
|
||||||
printf("\n%s...\n", msg);
|
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(arena);
|
||||||
P(ordblks);
|
P(ordblks);
|
||||||
P(smblks);
|
P(smblks);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue