summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-05-13 14:38:40 +0000
committerJim Meyering <jim@meyering.net>2003-05-13 14:38:40 +0000
commit80d799b8a2d01c0a81c0002b4d0c0a99556b20f8 (patch)
tree892d8314ae06e4c601e3a6323f23073e62a0130e /src
parent2a1e8507f426a656be686a78693a213ad59b160c (diff)
downloadcoreutils-80d799b8a2d01c0a81c0002b4d0c0a99556b20f8.tar.xz
(OLD): Don't apply cast to argument of free.
Diffstat (limited to 'src')
-rw-r--r--src/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c
index d4067cff3..b39b73f17 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