From: ceriel Date: Fri, 12 Nov 1993 15:48:22 +0000 (+0000) Subject: Realloc call: put cast in front of first arg X-Git-Tag: release-5-5~225 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=dbdf63595aa09eef7ddc116290ec488cb7f3901a;p=ack.git Realloc call: put cast in front of first arg --- diff --git a/lang/cem/cemcom/options.c b/lang/cem/cemcom/options.c index 73c1e832e..db4288f95 100644 --- a/lang/cem/cemcom/options.c +++ b/lang/cem/cemcom/options.c @@ -186,7 +186,7 @@ deleted, is now a debug-flag if (++inc_total > inc_max) { inctable = (char **) - Realloc(inctable,(inc_max+=10)*sizeof(char *)); + Realloc((char *) inctable,(inc_max+=10)*sizeof(char *)); } for (i = inc_pos++; i < inc_total; i++) {