X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fprocess-unix.c;h=462fb556641bebfbce92643d039158af5279ef0c;hb=3062d425fac0473eb5aa2efc0bb002f6ce0cb028;hp=d50028ef325371d91a29483a83c4ee49f698af85;hpb=c740b47fa11cbfe4416bbcfb991ad714f82610a8;p=chise%2Fxemacs-chise.git- diff --git a/src/process-unix.c b/src/process-unix.c index d50028e..462fb55 100644 --- a/src/process-unix.c +++ b/src/process-unix.c @@ -1288,7 +1288,7 @@ unix_send_process (Lisp_Object proc, struct lstream* lstream) while (1) { - ssize_t writeret; + Lstream_data_count writeret; chunklen = Lstream_read (lstream, chunkbuf, 512); if (chunklen <= 0) @@ -1543,9 +1543,9 @@ unix_kill_child_process (Lisp_Object proc, int signo, if (EMACS_KILLPG (pgid, signo) == -1) { /* It's not an error if our victim is already dead. - And we can't rely on the result of killing a zombie, since - XPG 4.2 requires that killing a zombie fail with ESRCH, - while FIPS 151-2 requires that it succeeds! */ + And we can't rely on the result of killing a zombie, since + XPG 4.2 requires that killing a zombie fail with ESRCH, + while FIPS 151-2 requires that it succeeds! */ #ifdef ESRCH if (errno != ESRCH) #endif