1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00

(alloca): Don't apply cast to argument of free.

This commit is contained in:
Jim Meyering
2003-05-13 14:48:36 +00:00
parent 56a5857660
commit 1aa55ac277

View File

@@ -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. */
}