diff options
| author | Paul Eggert | 2011-04-15 01:31:40 -0700 |
|---|---|---|
| committer | Paul Eggert | 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.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, | |||
| 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 |