From aaff6a688421b00b178d26e4d6818ccc7a68efe4 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 28 Aug 2006 11:59:20 +0000 Subject: [PATCH] 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 --- coregrind/m_errormgr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)(), -- 2.47.2