From: Paul Eggert Date: Fri, 15 Apr 2011 08:35:53 +0000 (-0700) Subject: * process.c (send_process): Change a size_t to EMACS_INT. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~283^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d6c25432149acdf5c3c3eb11f4857922dab089c;p=emacs.git * process.c (send_process): Change a size_t to EMACS_INT. --- 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, 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.