diff options
Diffstat (limited to 'malloc/memusagestat.c')
-rw-r--r-- | malloc/memusagestat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/malloc/memusagestat.c b/malloc/memusagestat.c index 99e9554a06..c3c21e448a 100644 --- a/malloc/memusagestat.c +++ b/malloc/memusagestat.c @@ -346,8 +346,8 @@ main (int argc, char *argv[]) if (cnt != cnt2) gdImageDashedLine (im_out, 40, ysize - 20 - cnt2, xsize - 40, ysize - 20 - cnt2, green); - snprintf (buf, sizeof (buf), stack_format, maxsize_stack / 4 * line / - stack_scale); + snprintf (buf, sizeof (buf), stack_format, + maxsize_stack / 4 * line / stack_scale); gdImageString (im_out, gdFontSmall, xsize - 37, ysize - 26 - cnt2, (unsigned char *) buf, green); } |