diff options
author | Jim Meyering <jim@meyering.net> | 2003-09-28 08:20:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-09-28 08:20:52 +0000 |
commit | 9691f1611e8452001007d29109143c331b0cccf5 (patch) | |
tree | 3acb55adec0afc9d71d7c64e5fb65a64801def0b | |
parent | 819f39dc9b083c6bf5115cddb364df674739686f (diff) | |
download | coreutils-9691f1611e8452001007d29109143c331b0cccf5.tar.xz |
Remove unnecessary cast of alloca, since now it's guaranteed to be (void *).
-rw-r--r-- | src/join.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/join.c b/src/join.c index b4d1cbb86..694a18e5a 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; |