Mercurial > hg > xemacs-beta
diff src/process-nt.c @ 333:4f79e16b1112 r21-0-64
Import from CVS: tag r21-0-64
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:49:50 +0200 |
parents | afd57c14dfc8 |
children | 182f72e8cd0d |
line wrap: on
line diff
--- a/src/process-nt.c Mon Aug 13 10:49:08 2007 +0200 +++ b/src/process-nt.c Mon Aug 13 10:49:50 2007 +0200 @@ -621,14 +621,14 @@ /* use a reasonable-sized buffer (somewhere around the size of the stream buffer) so as to avoid inundating the stream with blocked data. */ - Bufbyte chunkbuf[512]; + Bufbyte chunkbuf[128]; Bytecount chunklen; while (1) { int writeret; - chunklen = Lstream_read (lstream, chunkbuf, 512); + chunklen = Lstream_read (lstream, chunkbuf, 128); if (chunklen <= 0) break; /* perhaps should abort() if < 0? This should never happen. */