From d3be13ad6c1e4ef86ec24a47ddfaf71da96792ec Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 1 Sep 2014 21:12:44 +0000 Subject: [PATCH] Fix bogus bracketing. No functional change. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14414 --- coregrind/m_scheduler/scheduler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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__); -- 2.47.2