From: Karl Heuer Date: Mon, 1 Jun 1998 03:32:52 +0000 (+0000) Subject: (Finsert_file_contents): Fix char signedness mismatches. X-Git-Tag: emacs-20.3~766 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cadf50ff82951ce01ca4a57e5388c8cfe5b54d02;p=emacs.git (Finsert_file_contents): Fix char signedness mismatches. --- diff --git a/src/fileio.c b/src/fileio.c index 5814e2794e5..8aa87038cfd 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3767,7 +3767,7 @@ This does code conversion according to the value of\n\ { /* try is reserved in some compilers (Microsoft C) */ int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed); - char *destination = read_buf + unprocessed; + unsigned char *destination = read_buf + unprocessed; int this; /* Allow quitting out of the actual I/O. */