]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
printing verbosity wibble
authorJulian Seward <jseward@acm.org>
Sat, 5 Oct 2002 15:34:38 +0000 (15:34 +0000)
committerJulian Seward <jseward@acm.org>
Sat, 5 Oct 2002 15:34:38 +0000 (15:34 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1196

coregrind/vg_scheduler.c

index a10165dbc1e1378978c044673fa2e77842fdc2f8..d257f9f357432754a2a15372f61c5ad6ab54d8fe 100644 (file)
@@ -1490,7 +1490,7 @@ VgSchedReturnCode VG_(scheduler) ( void )
 
                if (VG_(needs).libc_freeres && VG_(clo_run_libc_freeres)) {
 
-                  if (VG_(clo_verbosity) >= 2 
+                  if (VG_(clo_verbosity) > 2 
                       || VG_(clo_trace_syscalls) || VG_(clo_trace_sched)) {
                      VG_(message)(Vg_DebugMsg, 
                         "Caught __NR_exit; running __libc_freeres()");
@@ -1502,7 +1502,7 @@ VgSchedReturnCode VG_(scheduler) ( void )
 
                } else {
                   /* We won't run __libc_freeres; just exit now. */
-                  if (VG_(clo_verbosity) >= 2 
+                  if (VG_(clo_verbosity) > 2 
                       || VG_(clo_trace_syscalls) || VG_(clo_trace_sched)) {
                      VG_(message)(Vg_DebugMsg, 
                         "Caught __NR_exit; quitting");