* process.c (send_process): Change another size_t to EMACS_INT.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 15 Apr 2011 08:31:40 +0000 (01:31 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 15 Apr 2011 08:31:40 +0000 (01:31 -0700)
src/process.c

index f41cdbe..6b58bc6 100644 (file)
@@ -5368,7 +5368,7 @@ send_process (volatile Lisp_Object proc, const char *volatile buf,
          /* Send this batch, using one or more write calls.  */
          while (this > 0)
            {
-             size_t written = 0;
+             EMACS_INT written = 0;
              int outfd = p->outfd;
              old_sigpipe = (void (*) (int)) signal (SIGPIPE, send_process_trap);
 #ifdef DATAGRAM_SOCKETS