summaryrefslogtreecommitdiffstats
path: root/byterun/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/io.c')
-rw-r--r--byterun/io.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/byterun/io.c b/byterun/io.c
index d516739ad..0aef48fed 100644
--- a/byterun/io.c
+++ b/byterun/io.c
@@ -137,11 +137,11 @@ again:
if (errno == EINTR) goto again;
if (errno == EAGAIN || errno == EWOULDBLOCK) {
/* We couldn't do a partial write here, probably because
- n <= PIPE_BUF and POSIX says that writes of less than
- PIPE_BUF characters must be atomic.
- So, we force a partial write of 1 character.
- This should always succeed if we've done a select
- on writing just before. */
+ n <= PIPE_BUF and POSIX says that writes of less than
+ PIPE_BUF characters must be atomic.
+ So, we force a partial write of 1 character.
+ This should always succeed if we've done a select
+ on writing just before. */
if (n > 1) { n = 1; goto again; }
}
}