|
From: <sv...@va...> - 2005-10-21 12:05:13
|
Author: sewardj
Date: 2005-10-21 13:05:05 +0100 (Fri, 21 Oct 2005)
New Revision: 4963
Log:
Pass args to match format string.
Modified:
trunk/coregrind/m_mallocfree.c
Modified: trunk/coregrind/m_mallocfree.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_mallocfree.c 2005-10-21 02:37:40 UTC (rev 4962)
+++ trunk/coregrind/m_mallocfree.c 2005-10-21 12:05:05 UTC (rev 4963)
@@ -182,7 +182,8 @@
SizeT bszB_hi =3D *(SizeT*)&b2[mk_plain_bszB(bszB_lo) - sizeof(SizeT)=
];
vg_assert2(bszB_lo =3D=3D bszB_hi,=20
"Heap block lo/hi size mismatch: lo =3D %llu, hi =3D %llu.\n"
- "Probably caused by overrunning/underrunning a heap block's bounds=
\n");
+ "Probably caused by overrunning/underrunning a heap block's bounds=
.\n",
+ (ULong)bszB_lo, (ULong)bszB_hi);
return bszB_lo;
}
=20
|