From ef9b7ce60f96c463efbf7c975b61d30dd11442b8 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Sun, 8 Mar 1998 11:42:25 +0000 Subject: [PATCH] remove printf, gindent --- lib/util.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)); } -- 2.47.3