Commit ff3184ca authored by Wayne Davison's avatar Wayne Davison

A couple more unsigned char changes to silence compiler warnings

on signed-char systems (like Solaris).
parent 12865a97
......@@ -92,9 +92,9 @@ static void configLine(poptContext con, unsigned char * line)
int poptReadConfigFile(poptContext con, const char * fn)
{
const char * file, * chptr, * end;
char * buf;
/*@dependent@*/ char * dst;
const unsigned char * file, * chptr, * end;
unsigned char * buf;
/*@dependent@*/ unsigned char * dst;
int fd, rc;
off_t fileLength;
......
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