]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix comments.
authorNicholas Nethercote <njn@valgrind.org>
Sun, 17 Jul 2005 16:12:59 +0000 (16:12 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Sun, 17 Jul 2005 16:12:59 +0000 (16:12 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4148

coregrind/m_libcprint.c
include/pub_tool_libcprint.h

index c51bd1d6be14cb323434f3a18404d6a44a963e69..3a3bc15fa8cc98d9f06ac5dead36e7c3def7c05c 100644 (file)
@@ -154,7 +154,7 @@ UInt VG_(sprintf) ( Char* buf, const HChar *format, ... )
    percentify()
    ------------------------------------------------------------------ */
 
-// 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[]) 
 {
    Int i, len, space;
index 67621c36aeec5fdf823487aaa98cfdf4527822dd..8922a6a05e55d6f378b478a92ea2e2dab4fe1016 100644 (file)
@@ -45,7 +45,7 @@ extern UInt VG_(vprintf) ( const HChar *format, va_list vargs );
 extern UInt VG_(sprintf) ( Char* buf, const HChar* format, ... );
 extern UInt VG_(vsprintf)( Char* buf, const HChar* format, va_list vargs );
 
-// 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[]);
 
 /* ---------------------------------------------------------------------