diff options
| author | Paul Eggert | 2011-04-15 01:35:53 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-15 01:35:53 -0700 |
| commit | 3d6c25432149acdf5c3c3eb11f4857922dab089c (patch) | |
| tree | 4b3e0e781b5ff497bb25782b6100595fa256795c /src/process.c | |
| parent | 85de188188e61c9066b662bae2cc77424b74a7bd (diff) | |
| download | emacs-3d6c25432149acdf5c3c3eb11f4857922dab089c.tar.gz emacs-3d6c25432149acdf5c3c3eb11f4857922dab089c.zip | |
* process.c (send_process): Change a 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 6b58bc6315b..c9c6ab6d4b3 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5424,7 +5424,7 @@ send_process (volatile Lisp_Object proc, const char *volatile buf, | |||
| 5424 | that may allow the program | 5424 | that may allow the program |
| 5425 | to finish doing output and read more. */ | 5425 | to finish doing output and read more. */ |
| 5426 | { | 5426 | { |
| 5427 | size_t offset = 0; | 5427 | EMACS_INT offset = 0; |
| 5428 | 5428 | ||
| 5429 | #ifdef BROKEN_PTY_READ_AFTER_EAGAIN | 5429 | #ifdef BROKEN_PTY_READ_AFTER_EAGAIN |
| 5430 | /* A gross hack to work around a bug in FreeBSD. | 5430 | /* A gross hack to work around a bug in FreeBSD. |