From: Wayne Davison Date: Wed, 28 Jan 2004 00:04:57 +0000 (+0000) Subject: A couple more unsigned char changes to silence compiler warnings X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/ff3184ca1e6afba19d787fd60a355cccedccab88 A couple more unsigned char changes to silence compiler warnings on signed-char systems (like Solaris). --- diff --git a/popt/poptconfig.c b/popt/poptconfig.c index 446e6e98..50235661 100644 --- a/popt/poptconfig.c +++ b/popt/poptconfig.c @@ -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;