aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
authorEli Zaretskii2010-09-24 09:32:25 -0400
committerEli Zaretskii2010-09-24 09:32:25 -0400
commit69481da786be74ed3f89eebafbd38b9de9a1355e (patch)
tree48a8c9853ec2b19b7e709da3ac447c6c42168424 /src/callproc.c
parent61bfec9843db66eff4e5f3dfcb843f0e207da283 (diff)
downloademacs-69481da786be74ed3f89eebafbd38b9de9a1355e.tar.gz
emacs-69481da786be74ed3f89eebafbd38b9de9a1355e.zip
Fix int/EMACS_INT use in callproc.c.
callproc.c (Fcall_process): Use EMACS_INT for count of characters read from the subprocess.
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 8c1384df6a1..6f70631a484 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -678,9 +678,9 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
678 QUIT; 678 QUIT;
679 679
680 { 680 {
681 register int nread; 681 register EMACS_INT nread;
682 int first = 1; 682 int first = 1;
683 int total_read = 0; 683 EMACS_INT total_read = 0;
684 int carryover = 0; 684 int carryover = 0;
685 int display_on_the_fly = display_p; 685 int display_on_the_fly = display_p;
686 struct coding_system saved_coding; 686 struct coding_system saved_coding;