diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-15 01:31:40 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-15 01:31:40 -0700 |
commit | 85de188188e61c9066b662bae2cc77424b74a7bd (patch) | |
tree | 18339034ba8b793d6d9efae29c5e7ea1706d04c5 /src/process.c | |
parent | 9587a89da041d3848bd6b639e836d70cb40b4bd6 (diff) | |
download | emacs-85de188188e61c9066b662bae2cc77424b74a7bd.tar.gz emacs-85de188188e61c9066b662bae2cc77424b74a7bd.tar.bz2 emacs-85de188188e61c9066b662bae2cc77424b74a7bd.zip |
* process.c (send_process): Change another size_t to EMACS_INT.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 2 |
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, /* 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 |