(read_process_output): Add cast.
authorRichard M. Stallman <rms@gnu.org>
Thu, 10 Jul 1997 03:09:10 +0000 (03:09 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 10 Jul 1997 03:09:10 +0000 (03:09 +0000)
src/process.c

index f2b872d..94246f3 100644 (file)
@@ -2774,7 +2774,7 @@ read_process_output (proc, channel)
 #endif
       if (produced == 0)
        return 0;
-      chars = XSTRING (p->decoding_buf)->data;
+      chars = (char *) XSTRING (p->decoding_buf)->data;
       nchars = produced;
       chars_in_decoding_buf = 1;
     }