From: Julian Seward Date: Mon, 28 Aug 2006 11:59:20 +0000 (+0000) Subject: Merge r5973 (fix for: 'c' in --gen-supps=yes doesn't work) X-Git-Tag: svn/VALGRIND_3_2_1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaff6a688421b00b178d26e4d6818ccc7a68efe4;p=thirdparty%2Fvalgrind.git Merge r5973 (fix for: 'c' in --gen-supps=yes doesn't work) git-svn-id: svn://svn.valgrind.org/valgrind/branches/VALGRIND_3_2_BRANCH@6015 --- diff --git a/coregrind/m_errormgr.c b/coregrind/m_errormgr.c index 0ee1b4ecd0..2fb30f4728 100644 --- a/coregrind/m_errormgr.c +++ b/coregrind/m_errormgr.c @@ -447,9 +447,9 @@ void do_actions_on_error(Error* err, Bool allow_db_attach) && VG_(is_action_requested)( "Print suppression", &still_noisy )) ) { gen_suppression(err); - if (VG_(clo_gen_suppressions) == 1 && !still_noisy) - VG_(clo_gen_suppressions) = 0; } + if (VG_(clo_gen_suppressions) == 1 && !still_noisy) + VG_(clo_gen_suppressions) = 0; } /* Shared between VG_(maybe_record_error)() and VG_(unique_error)(),