diff options
| author | Karl Heuer | 1998-06-01 03:32:52 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-06-01 03:32:52 +0000 |
| commit | cadf50ff82951ce01ca4a57e5388c8cfe5b54d02 (patch) | |
| tree | f5546f3631ca37bc41d52665ee4ab6cc30f02a77 /src | |
| parent | c292461fc5f1b975be5b3f9767f492d19cf22fb0 (diff) | |
| download | emacs-cadf50ff82951ce01ca4a57e5388c8cfe5b54d02.tar.gz emacs-cadf50ff82951ce01ca4a57e5388c8cfe5b54d02.zip | |
(Finsert_file_contents): Fix char signedness mismatches.
Diffstat (limited to 'src')
| -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\ | |||
| 3767 | { | 3767 | { |
| 3768 | /* try is reserved in some compilers (Microsoft C) */ | 3768 | /* try is reserved in some compilers (Microsoft C) */ |
| 3769 | int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed); | 3769 | int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed); |
| 3770 | char *destination = read_buf + unprocessed; | 3770 | unsigned char *destination = read_buf + unprocessed; |
| 3771 | int this; | 3771 | int this; |
| 3772 | 3772 | ||
| 3773 | /* Allow quitting out of the actual I/O. */ | 3773 | /* Allow quitting out of the actual I/O. */ |