From: Jim Meyering Date: Sun, 28 Sep 2003 08:22:35 +0000 (+0000) Subject: Remove unnecessary casts of alloca, since now it's guaranteed to be (void *). X-Git-Tag: v5.1.0~517 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b19d106cdbe19272770d61fb65bd7d0099287d75;p=thirdparty%2Fcoreutils.git Remove unnecessary casts of alloca, since now it's guaranteed to be (void *). --- diff --git a/src/ls.c b/src/ls.c index fd2e366ad7..6b7bd360e9 100644 --- a/src/ls.c +++ b/src/ls.c @@ -2348,7 +2348,7 @@ gobble_file (const char *name, enum filetype type, int explicit_arg, path = (char *) name; else { - path = (char *) alloca (strlen (name) + strlen (dirname) + 2); + path = alloca (strlen (name) + strlen (dirname) + 2); attach (path, dirname, name); } @@ -3115,7 +3115,7 @@ quote_name (FILE *out, const char *name, struct quoting_options const *options, buf = smallbuf; else { - buf = (char *) alloca (len + 1); + buf = alloca (len + 1); quotearg_buffer (buf, len + 1, name, -1, options); }