From: Nicholas Nethercote Date: Sat, 10 Jul 2004 13:56:19 +0000 (+0000) Subject: Fixed --sloppy-malloc and --trace-malloc, debugging options that I broke a X-Git-Tag: svn/VALGRIND_2_1_2~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa46b67475bbee7208b6f3d03625c2359ff324f1;p=thirdparty%2Fvalgrind.git Fixed --sloppy-malloc and --trace-malloc, debugging options that I broke a while back (sorry). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2461 --- diff --git a/coregrind/vg_malloc2.c b/coregrind/vg_malloc2.c index a7b1981228..f900886a33 100644 --- a/coregrind/vg_malloc2.c +++ b/coregrind/vg_malloc2.c @@ -66,8 +66,8 @@ Bool VG_(replacement_malloc_process_cmd_line_option)(Char* arg) } } - else VG_BOOL_CLO("--sloppy-malloc=yes", VG_(clo_sloppy_malloc)) - else VG_BOOL_CLO("--trace-malloc=yes", VG_(clo_trace_malloc)) + else VG_BOOL_CLO("--sloppy-malloc", VG_(clo_sloppy_malloc)) + else VG_BOOL_CLO("--trace-malloc", VG_(clo_trace_malloc)) else return False;