From 9691f1611e8452001007d29109143c331b0cccf5 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 28 Sep 2003 08:20:52 +0000 Subject: [PATCH] Remove unnecessary cast of alloca, since now it's guaranteed to be (void *). --- src/join.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/join.c b/src/join.c index b4d1cbb86d..694a18e5a4 100644 --- a/src/join.c +++ b/src/join.c @@ -685,7 +685,7 @@ add_field_list (const char *c_str) char *p, *str; /* Make a writable copy of c_str. */ - str = (char *) alloca (strlen (c_str) + 1); + str = alloca (strlen (c_str) + 1); strcpy (str, c_str); p = str; -- 2.47.3