From: wessels <> Date: Sun, 8 Mar 1998 11:42:25 +0000 (+0000) Subject: remove printf, gindent X-Git-Tag: SQUID_3_0_PRE1~3881 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef9b7ce60f96c463efbf7c975b61d30dd11442b8;p=thirdparty%2Fsquid.git remove printf, gindent --- diff --git a/lib/util.c b/lib/util.c index 851367bc36..2a914e1574 100644 --- a/lib/util.c +++ b/lib/util.c @@ -1,6 +1,6 @@ /* - * $Id: util.c,v 1.55 1998/03/07 23:42:56 rousskov Exp $ + * $Id: util.c,v 1.56 1998/03/08 04:42:25 wessels Exp $ * * DEBUG: * AUTHOR: Harvest Derived @@ -570,6 +570,7 @@ xrealloc(void *s, size_t sz) exit(1); } #if XMALLOC_DEBUG + fprintf(stderr, "realloc: ``mallocing'' %p\n", s); check_malloc(p, sz); #endif #if XMALLOC_STATISTICS @@ -748,7 +749,7 @@ xpercent(double part, double whole) int xpercentInt(double part, double whole) { - return (int)rint(xpercent(part, whole)); + return (int) rint(xpercent(part, whole)); }