|
From: <sv...@va...> - 2010-02-15 12:00:39
|
Author: sewardj
Date: 2010-02-15 12:00:28 +0000 (Mon, 15 Feb 2010)
New Revision: 11047
Log:
Guard new debug print statement in r11045 correctly (at all!)
Modified:
trunk/coregrind/m_debuginfo/readelf.c
Modified: trunk/coregrind/m_debuginfo/readelf.c
===================================================================
--- trunk/coregrind/m_debuginfo/readelf.c 2010-02-15 10:07:05 UTC (rev 11046)
+++ trunk/coregrind/m_debuginfo/readelf.c 2010-02-15 12:00:28 UTC (rev 11047)
@@ -964,8 +964,8 @@
return 0;
}
- VG_(message)(Vg_DebugMsg,
- " .. CRC is valid\n");
+ if (VG_(clo_verbosity) > 1)
+ VG_(message)(Vg_DebugMsg, " .. CRC is valid\n");
return sr_Res(sres);
}
|