]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix int/EMACS_INT use in callproc.c.
authorEli Zaretskii <eliz@gnu.org>
Fri, 24 Sep 2010 13:32:25 +0000 (09:32 -0400)
committerEli Zaretskii <eliz@gnu.org>
Fri, 24 Sep 2010 13:32:25 +0000 (09:32 -0400)
 callproc.c (Fcall_process): Use EMACS_INT for count of
 characters read from the subprocess.

src/ChangeLog
src/callproc.c

index 83295bc5f0950d459c4f0dfba13adfc416366471..2af0040e3c256fe22b48fc56d1afae029742708f 100644 (file)
@@ -1,5 +1,8 @@
 2010-09-24  Eli Zaretskii  <eliz@gnu.org>
 
+       * callproc.c (Fcall_process): Use EMACS_INT for count of
+       characters read from the subprocess.
+
        * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
        positions.
        (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
index 8c1384df6a11ce67596e5f2275302555b3ac7f3d..6f70631a4842e4591dd0e0b879e5f100dfd60142 100644 (file)
@@ -678,9 +678,9 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
   QUIT;
 
   {
-    register int nread;
+    register EMACS_INT nread;
     int first = 1;
-    int total_read = 0;
+    EMACS_INT total_read = 0;
     int carryover = 0;
     int display_on_the_fly = display_p;
     struct coding_system saved_coding;