From: Richard M. Stallman <rms@gnu.org> Date: Thu, 10 Jul 1997 03:09:10 +0000 (+0000) Subject: (read_process_output): Add cast. X-Git-Tag: emacs-20.1~1238 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d72236841c1073bcbf28ec3094f1dbb2d65f7291;p=emacs.git (read_process_output): Add cast. --- diff --git a/src/process.c b/src/process.c index f2b872d3437..94246f393a1 100644 --- a/src/process.c +++ b/src/process.c @@ -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; }