summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-05-13 14:48:36 +0000
committerJim Meyering <jim@meyering.net>2003-05-13 14:48:36 +0000
commit1aa55ac2776c8bf1644ee55f47e9e312decc3f3f (patch)
treea39ae0b5b2a65ec2c31273b2bf2fc62ac85f7fb6 /lib
parent56a5857660af150bd3b8ba6df8579a39ce73e084 (diff)
downloadcoreutils-1aa55ac2776c8bf1644ee55f47e9e312decc3f3f.tar.xz
(alloca): Don't apply cast to argument of free.
Diffstat (limited to 'lib')
-rw-r--r--lib/alloca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/alloca.c b/lib/alloca.c
index fd95a34d6..f4c364a72 100644
--- a/lib/alloca.c
+++ b/lib/alloca.c
@@ -193,7 +193,7 @@ alloca (size)
{
register header *np = hp->h.next;
- free ((pointer) hp); /* Collect garbage. */
+ free (hp); /* Collect garbage. */
hp = np; /* -> next header. */
}