# HG changeset patch # User Karl Heuer # Date 896671972 0 # Node ID 599c0971ae49c5a6bbbb2585b2d9c734d1aba93b # Parent c68a115303f71e8976e3451bee1fb7ddcd7b872d (Finsert_file_contents): Fix char signedness mismatches. diff -r c68a115303f7 -r 599c0971ae49 src/fileio.c --- a/src/fileio.c Mon Jun 01 03:32:00 1998 +0000 +++ b/src/fileio.c Mon Jun 01 03:32:52 1998 +0000 @@ -3767,7 +3767,7 @@ { /* 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. */