[Date Prev][Date Next] [Chronological] [Thread] [Top]

Compilation Errors with HEAD



Hi,

I am seeing compilation errors for some files (eg. dn.c) with gcc 2.95.4. In
all cases a const char * data type is passed to a function expecting a char
** with a cast like "&(char *)text". gcc cribs about unary & can't be
applied here. I modified it to (char **) &text.

Ganesan