From: David Dykstra Date: Sat, 11 Jan 2003 19:01:31 +0000 (+0000) Subject: Cast the return from alloca to work better on UNICOS. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/b17f1d76c0e84a2cf175066345437bd3f6990c69 Cast the return from alloca to work better on UNICOS. --- diff --git a/popt/poptconfig.c b/popt/poptconfig.c index 58ccf015..d6603e52 100644 --- a/popt/poptconfig.c +++ b/popt/poptconfig.c @@ -18,7 +18,7 @@ static void configLine(poptContext con, char * line) /*@=type@*/ const char * entryType; const char * opt; - poptItem item = alloca(sizeof(*item)); + poptItem item = (poptItem) alloca(sizeof(*item)); int i, j; memset(item, 0, sizeof(*item));