(Finsert_file_contents): Fix char signedness mismatches.

This commit is contained in:
Karl Heuer 1998-06-01 03:32:52 +00:00
parent c292461fc5
commit cadf50ff82

View file

@ -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. */