summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-29 14:52:32 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-29 14:52:32 +0000
commit32fe1ecdbc263d04cf6fff9edb99a6f9b7616d89 (patch)
tree28b7b65bc7b769286366fc1e428e70e8190bf34c
parentfffd379d4459a2022eb4a208e46a034d4620dea3 (diff)
comment modified.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 10e8cb9dd6..a5a5f93743 100644
--- a/io.c
+++ b/io.c
@@ -545,7 +545,7 @@ io_fflush(rb_io_t *fptr)
l = PIPE_BUF;
}
r = rb_write_internal(fptr->fd, fptr->wbuf+wbuf_off, l);
- /* xxx: Other threads modified wbuf in non-append operation.
+ /* xxx: Other threads may modify wbuf.
* A lock is required, definitely. */
rb_io_check_closed(fptr);
if (fptr->wbuf_len <= r) {