From f6c73c33d33088aa2c71e6e2c5825b4862eb269a Mon Sep 17 00:00:00 2001 From: Tigran Aivazian Date: Thu, 11 Oct 2012 11:49:38 +0100 Subject: [PATCH] Commented out debug-only function readable_fs(). --- pdf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pdf.c b/pdf.c index dd0de744b..fdb64b674 100644 --- a/pdf.c +++ b/pdf.c @@ -58,6 +58,7 @@ static size_t msize_min; static size_t msize_iniz; static int is_realloc=0; +#if 0 char* readable_fs(double size/*in bytes*/, char *buf) { int i = 0; const char* units[] = {"B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"}; @@ -68,6 +69,7 @@ char* readable_fs(double size/*in bytes*/, char *buf) { sprintf(buf, "%.*f %s", i, size, units[i]); return buf; } +#endif static void resetMsize(){ msize_iniz = msize;