From: Nicholas Nethercote Date: Fri, 29 Oct 2004 11:17:21 +0000 (+0000) Subject: Fix typo that meant --signal-polltime was not being accepted. X-Git-Tag: svn/VALGRIND_3_0_0~1430 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=500ffb47dc6e5d9a1a045be8f152816479c963f4;p=thirdparty%2Fvalgrind.git Fix typo that meant --signal-polltime was not being accepted. MERGE TO STABLE git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2873 --- diff --git a/coregrind/vg_main.c b/coregrind/vg_main.c index 69fa47a361..f2afc12f97 100644 --- a/coregrind/vg_main.c +++ b/coregrind/vg_main.c @@ -1763,7 +1763,7 @@ static void process_cmd_line_options( UInt* client_auxv, const char* toolname ) else VG_NUM_CLO ("--dump-error", VG_(clo_dump_error)) else VG_NUM_CLO ("--input-fd", VG_(clo_input_fd)) else VG_NUM_CLO ("--sanity-level", VG_(clo_sanity_level)) - else VG_NUM_CLO ("--signal­polltime", VG_(clo_signal_polltime)) + else VG_NUM_CLO ("--signal-polltime", VG_(clo_signal_polltime)) else VG_BNUM_CLO("--num-callers", VG_(clo_backtrace_size), 1, VG_DEEPEST_BACKTRACE)