diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-06-01 03:32:52 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-06-01 03:32:52 +0000 |
commit | cadf50ff82951ce01ca4a57e5388c8cfe5b54d02 (patch) | |
tree | f5546f3631ca37bc41d52665ee4ab6cc30f02a77 | |
parent | c292461fc5f1b975be5b3f9767f492d19cf22fb0 (diff) | |
download | emacs-cadf50ff82951ce01ca4a57e5388c8cfe5b54d02.tar.gz emacs-cadf50ff82951ce01ca4a57e5388c8cfe5b54d02.tar.bz2 emacs-cadf50ff82951ce01ca4a57e5388c8cfe5b54d02.zip |
(Finsert_file_contents): Fix char signedness mismatches.
-rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |