From: Julian Seward Date: Mon, 1 Sep 2014 21:12:44 +0000 (+0000) Subject: Fix bogus bracketing. No functional change. X-Git-Tag: svn/VALGRIND_3_10_0~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3be13ad6c1e4ef86ec24a47ddfaf71da96792ec;p=thirdparty%2Fvalgrind.git Fix bogus bracketing. No functional change. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14414 --- diff --git a/coregrind/m_scheduler/scheduler.c b/coregrind/m_scheduler/scheduler.c index c25a75971d..6ed837ad9c 100644 --- a/coregrind/m_scheduler/scheduler.c +++ b/coregrind/m_scheduler/scheduler.c @@ -1093,7 +1093,7 @@ static void handle_syscall(ThreadId tid, UInt trc) runnable again. We could take a signal while the syscall runs. */ - if (VG_(clo_sanity_level >= 3)) { + if (VG_(clo_sanity_level) >= 3) { HChar buf[50]; VG_(sprintf)(buf, "(BEFORE SYSCALL, tid %d)", tid); Bool ok = VG_(am_do_sync_check)(buf, __FILE__, __LINE__); @@ -1102,7 +1102,7 @@ static void handle_syscall(ThreadId tid, UInt trc) SCHEDSETJMP(tid, jumped, VG_(client_syscall)(tid, trc)); - if (VG_(clo_sanity_level >= 3)) { + if (VG_(clo_sanity_level) >= 3) { HChar buf[50]; VG_(sprintf)(buf, "(AFTER SYSCALL, tid %d)", tid); Bool ok = VG_(am_do_sync_check)(buf, __FILE__, __LINE__);