From d7b5315b0e0d2ebba292ccf0de92fd0e7a2123e8 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 4 Apr 1993 21:52:09 +0000 Subject: [PATCH] (make_path): Explicitly cast alloca return value to (char *). --- lib/makepath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/makepath.c b/lib/makepath.c index 3ca5c97654..4c19630e66 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)) -- 2.30.2