Mercurial > hg > xemacs-beta
diff src/process-nt.c @ 390:c6012109f545 r21-2-10
Import from CVS: tag r21-2-10
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:10:03 +0200 |
parents | 8626e4521993 |
children | 74fd4e045ea6 |
line wrap: on
line diff
--- a/src/process-nt.c Mon Aug 13 11:09:43 2007 +0200 +++ b/src/process-nt.c Mon Aug 13 11:10:03 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. */