]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix bogus bracketing. No functional change.
authorJulian Seward <jseward@acm.org>
Mon, 1 Sep 2014 21:12:44 +0000 (21:12 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 1 Sep 2014 21:12:44 +0000 (21:12 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14414

coregrind/m_scheduler/scheduler.c

index c25a75971d787a0316a96c8b98870c6cf7139a7f..6ed837ad9cd0bb58f865771518bfd5f7b009936e 100644 (file)
@@ -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__);