From 3d6c25432149acdf5c3c3eb11f4857922dab089c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 15 Apr 2011 01:35:53 -0700 Subject: [PATCH] * process.c (send_process): Change a size_t to EMACS_INT. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index 6b58bc6315..c9c6ab6d4b 100644 --- a/src/process.c +++ b/src/process.c @@ -5424,7 +5424,7 @@ send_process (volatile Lisp_Object proc, const char *volatile buf, that may allow the program to finish doing output and read more. */ { - size_t offset = 0; + EMACS_INT offset = 0; #ifdef BROKEN_PTY_READ_AFTER_EAGAIN /* A gross hack to work around a bug in FreeBSD. -- 2.20.1