A couple more unsigned char changes to silence compiler warnings

on signed-char systems (like Solaris).
This commit is contained in:
Wayne Davison
2004-01-28 00:04:57 +00:00
parent 12865a9762
commit ff3184ca1e

View File

@@ -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;