From cadf50ff82951ce01ca4a57e5388c8cfe5b54d02 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 1 Jun 1998 03:32:52 +0000 Subject: [PATCH] (Finsert_file_contents): Fix char signedness mismatches. --- src/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.20.1