diff src/fileio.c @ 22311:599c0971ae49

(Finsert_file_contents): Fix char signedness mismatches.
author Karl Heuer <kwzh@gnu.org>
date Mon, 01 Jun 1998 03:32:52 +0000
parents e0f5d2438001
children e845baca3407
line wrap: on
line diff
--- 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.  */