diff options
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/tst-mallinfo2.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |