|
From: <sv...@va...> - 2010-07-01 11:42:30
|
Author: sewardj
Date: 2010-07-01 12:42:22 +0100 (Thu, 01 Jul 2010)
New Revision: 11204
Log:
Fix \n placement in Darwin sync-check-failure messages.
Modified:
trunk/coregrind/m_aspacemgr/aspacemgr-linux.c
Modified: trunk/coregrind/m_aspacemgr/aspacemgr-linux.c
===================================================================
--- trunk/coregrind/m_aspacemgr/aspacemgr-linux.c 2010-07-01 11:15:32 UTC (rev 11203)
+++ trunk/coregrind/m_aspacemgr/aspacemgr-linux.c 2010-07-01 11:42:22 UTC (rev 11204)
@@ -3478,8 +3478,8 @@
# endif
if (seg_prot != prot) {
if (VG_(clo_trace_syscalls))
- VG_(debugLog)(0,"aspacem","\nregion %p..%p permission "
- "mismatch (kernel %x, V %x)",
+ VG_(debugLog)(0,"aspacem","region %p..%p permission "
+ "mismatch (kernel %x, V %x)\n",
(void*)nsegments[i].start,
(void*)(nsegments[i].end+1), prot, seg_prot);
}
|