|
From: <sv...@va...> - 2015-03-05 11:29:08
|
Author: sewardj
Date: Thu Mar 5 11:28:57 2015
New Revision: 14981
Log:
Make printing of transtab: debug-log messages slightly prettier.
No functional change.
Modified:
trunk/coregrind/m_transtab.c
Modified: trunk/coregrind/m_transtab.c
==============================================================================
--- trunk/coregrind/m_transtab.c (original)
+++ trunk/coregrind/m_transtab.c Thu Mar 5 11:28:57 2015
@@ -1425,7 +1425,7 @@
/* Sector has been used before. Dump the old contents. */
VG_(debugLog)(1,"transtab", "recycle sector %d\n", sno);
if (VG_(clo_stats))
- VG_(dmsg)("transtab: " "recycle sector %d\n", sno);
+ VG_(dmsg)("transtab: " "recycle sector %d\n", sno);
vg_assert(sec->tt != NULL);
vg_assert(sec->tc_next != NULL);
@@ -1574,7 +1574,7 @@
y, tt_loading_pct, tc_loading_pct);
if (VG_(clo_stats)) {
VG_(dmsg)("transtab: "
- "declare sector %d full "
+ "declare sector %d full "
"(TT loading %2d%%, TC loading %2d%%)\n",
y, tt_loading_pct, tc_loading_pct);
}
|