aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-10 03:09:10 +0000
committerRichard M. Stallman1997-07-10 03:09:10 +0000
commitd72236841c1073bcbf28ec3094f1dbb2d65f7291 (patch)
treef04230eb3bab9656816e5b989d29b87a61ca85b9 /src
parent3609a53bf61ca804ed6b59bdcc7b62fa356aaa88 (diff)
downloademacs-d72236841c1073bcbf28ec3094f1dbb2d65f7291.tar.gz
emacs-d72236841c1073bcbf28ec3094f1dbb2d65f7291.zip
(read_process_output): Add cast.
Diffstat (limited to 'src')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
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)
2774#endif 2774#endif
2775 if (produced == 0) 2775 if (produced == 0)
2776 return 0; 2776 return 0;
2777 chars = XSTRING (p->decoding_buf)->data; 2777 chars = (char *) XSTRING (p->decoding_buf)->data;
2778 nchars = produced; 2778 nchars = produced;
2779 chars_in_decoding_buf = 1; 2779 chars_in_decoding_buf = 1;
2780 } 2780 }