aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-04-15 01:31:40 -0700
committerPaul Eggert2011-04-15 01:31:40 -0700
commit85de188188e61c9066b662bae2cc77424b74a7bd (patch)
tree18339034ba8b793d6d9efae29c5e7ea1706d04c5 /src
parent9587a89da041d3848bd6b639e836d70cb40b4bd6 (diff)
downloademacs-85de188188e61c9066b662bae2cc77424b74a7bd.tar.gz
emacs-85de188188e61c9066b662bae2cc77424b74a7bd.zip
* process.c (send_process): Change another size_t to EMACS_INT.
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 f41cdbe5c71..6b58bc6315b 100644
--- a/src/process.c
+++ b/src/process.c
@@ -5368,7 +5368,7 @@ send_process (volatile Lisp_Object proc, const char *volatile buf,
5368 /* Send this batch, using one or more write calls. */ 5368 /* Send this batch, using one or more write calls. */
5369 while (this > 0) 5369 while (this > 0)
5370 { 5370 {
5371 size_t written = 0; 5371 EMACS_INT written = 0;
5372 int outfd = p->outfd; 5372 int outfd = p->outfd;
5373 old_sigpipe = (void (*) (int)) signal (SIGPIPE, send_process_trap); 5373 old_sigpipe = (void (*) (int)) signal (SIGPIPE, send_process_trap);
5374#ifdef DATAGRAM_SOCKETS 5374#ifdef DATAGRAM_SOCKETS