]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
VG_(print_malloc_stats): change a %d to a %u.
authorJulian Seward <jseward@acm.org>
Sun, 22 Dec 2002 19:24:22 +0000 (19:24 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 22 Dec 2002 19:24:22 +0000 (19:24 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1387

coregrind/vg_clientmalloc.c

index 1d1a50b728143c8d0eeafe5938c22a9dfc9bd776..653dc06edb94a23b2e3090534b2282309490dc96 100644 (file)
@@ -475,7 +475,7 @@ void VG_(print_malloc_stats) ( void )
                 "malloc/free: in use at exit: %d bytes in %d blocks.",
                 nbytes, nblocks);
    VG_(message)(Vg_UserMsg, 
-                "malloc/free: %d allocs, %d frees, %d bytes allocated.",
+                "malloc/free: %d allocs, %d frees, %u bytes allocated.",
                 vg_cmalloc_n_mallocs,
                 vg_cmalloc_n_frees, vg_cmalloc_bs_mallocd);
    if (0)