git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4148
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;
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[]);
/* ---------------------------------------------------------------------