From: Julian Seward Date: Sun, 25 Jun 2006 12:18:20 +0000 (+0000) Subject: Make 'c'/'C' work again with --gen-suppressions=yes. I wonder how X-Git-Tag: svn/VALGRIND_3_3_0~731 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8dd52219f76cf1fdfc9350379d147dc6a1d35e1;p=thirdparty%2Fvalgrind.git Make 'c'/'C' work again with --gen-suppressions=yes. I wonder how long this has been broken. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5978 --- 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)(),