summaryrefslogtreecommitdiff
path: root/lib/makepath.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-04-04 21:52:09 +0000
committerJim Meyering <jim@meyering.net>1993-04-04 21:52:09 +0000
commit7ff4e5a7001502408c54faf9728850a4e382593c (patch)
tree7faa73d4b3a74f9dd61faffbefe27e3895ef0c3a /lib/makepath.c
parent0df7488562d561ff30aacfb82d48d5bff1cf5e20 (diff)
downloadcoreutils-7ff4e5a7001502408c54faf9728850a4e382593c.tar.xz
(make_path): Explicitly cast alloca return value to (char *).
Diffstat (limited to 'lib/makepath.c')
-rw-r--r--lib/makepath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/makepath.c b/lib/makepath.c
index 3ca5c9765..4c19630e6 100644
--- a/lib/makepath.c
+++ b/lib/makepath.c
@@ -95,7 +95,7 @@ make_path (argpath, mode, parent_mode, owner, group, verbose_fmt_string)
int retval = 0;
int oldmask = umask (0);
- dirpath = alloca (strlen (argpath) + 1);
+ dirpath = (char *) alloca (strlen (argpath) + 1);
strcpy (dirpath, argpath);
if (stat (dirpath, &stats))