From: Jim Meyering Date: Tue, 13 May 2003 14:38:40 +0000 (+0000) Subject: (OLD): Don't apply cast to argument of free. X-Git-Tag: v5.0.1~503 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80d799b8a2d01c0a81c0002b4d0c0a99556b20f8;p=thirdparty%2Fcoreutils.git (OLD): Don't apply cast to argument of free. --- diff --git a/src/expr.c b/src/expr.c index d4067cff36..b39b73f174 100644 --- a/src/expr.c +++ b/src/expr.c @@ -46,7 +46,7 @@ #undef NEW #define NEW(Type) XMALLOC (Type, 1) -#define OLD(x) free ((char *) x) +#define OLD(x) free (x) /* The kinds of value we can have. */ enum valtype