|
From: <sv...@va...> - 2005-07-17 16:13:32
|
Author: njn
Date: 2005-07-17 17:12:59 +0100 (Sun, 17 Jul 2005)
New Revision: 4148
Log:
Fix comments.
Modified:
trunk/coregrind/m_libcprint.c
trunk/include/pub_tool_libcprint.h
Modified: trunk/coregrind/m_libcprint.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_libcprint.c 2005-07-13 14:18:24 UTC (rev 4147)
+++ trunk/coregrind/m_libcprint.c 2005-07-17 16:12:59 UTC (rev 4148)
@@ -154,7 +154,7 @@
percentify()
------------------------------------------------------------------ */
=20
-// Percentify n/m with p decimal places. Includes the '%' symbol at the=
end.
+// Percentify n/m with d decimal places. Includes the '%' symbol at the=
end.
void VG_(percentify)(UInt n, UInt m, UInt d, Int n_buf, char buf[])=20
{
Int i, len, space;
Modified: trunk/include/pub_tool_libcprint.h
=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/include/pub_tool_libcprint.h 2005-07-13 14:18:24 UTC (rev 4147)
+++ trunk/include/pub_tool_libcprint.h 2005-07-17 16:12:59 UTC (rev 4148)
@@ -45,7 +45,7 @@
extern UInt VG_(sprintf) ( Char* buf, const HChar* format, ... );
extern UInt VG_(vsprintf)( Char* buf, const HChar* format, va_list vargs=
);
=20
-// Percentify n/m with p decimal places. Includes the '%' symbol at the=
end.
+// Percentify n/m with d decimal places. Includes the '%' symbol at the=
end.
extern void VG_(percentify)(UInt n, UInt m, UInt d, Int n_buf, char buf[=
]);
=20
/* ---------------------------------------------------------------------
|