From: Karl Heuer Date: Mon, 1 Jun 1998 03:32:52 +0000 (+0000) Subject: (Finsert_file_contents): Fix char signedness mismatches. X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/cadf50ff82951ce01ca4a57e5388c8cfe5b54d02 (Finsert_file_contents): Fix char signedness mismatches. --- diff --git a/src/fileio.c b/src/fileio.c index 5814e2794e..8aa87038cf 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. */