Commit b17f1d76 authored by David Dykstra's avatar David Dykstra

Cast the return from alloca to work better on UNICOS.

parent 451b5fc9
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment