(Finsert_file_contents): Fix char signedness mismatches.
This commit is contained in:
parent
c292461fc5
commit
cadf50ff82
1 changed files with 1 additions and 1 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue