changeset 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 c68a115303f7
children eed3a1470e83
files src/fileio.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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.  */