diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2012-09-05 22:04:10 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2012-09-05 22:04:57 +0530 |
commit | 1ffb8c9001398e1c6402e455b566dfe3d84a0786 (patch) | |
tree | ce61bc63a8922be2f132456b86fd42d084e4969e /libio/fileops.c | |
parent | b9dafc562ec524c01f43907b1d213d5824261774 (diff) | |
download | glibc-1ffb8c9001398e1c6402e455b566dfe3d84a0786.zip glibc-1ffb8c9001398e1c6402e455b566dfe3d84a0786.tar.gz glibc-1ffb8c9001398e1c6402e455b566dfe3d84a0786.tar.bz2 |
Fix typos in comments
* libio/fileops.c: Fix typos in comments.
* libio/oldfileops.c: Likewise.
* libio/wfileops.c: Likewise.
Diffstat (limited to 'libio/fileops.c')
-rw-r--r-- | libio/fileops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/fileops.c b/libio/fileops.c index 7c7fef1..43973c5 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -101,7 +101,7 @@ extern struct __gconv_trans_data __libio_translit attribute_hidden; to _IO_buf_base, though not necessarily if we have switched from get mode to put mode. (The reason is to maintain the invariant that _IO_read_end corresponds to the external file position.) - _IO_write_base is non-NULL and usually equal to _IO_base_base. + _IO_write_base is non-NULL and usually equal to _IO_buf_base. We also have _IO_write_end == _IO_buf_end, but only in fully buffered mode. The un-flushed character are those between _IO_write_base and _IO_write_ptr. |