summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ls.c b/src/ls.c
index fd2e366ad..6b7bd360e 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);
}