diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-25 04:38:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-25 04:38:09 +0000 |
commit | 5c8d1fc0f687643184ff7f8fe8e49a36d93bcc4f (patch) | |
tree | 6132a7e7a0533d2ae3b490facec1936f9bb6264e /libio | |
parent | 7b5fd91d777e44e212556a4bbee51b6429ddd869 (diff) | |
download | glibc-5c8d1fc0f687643184ff7f8fe8e49a36d93bcc4f.tar.gz glibc-5c8d1fc0f687643184ff7f8fe8e49a36d93bcc4f.tar.xz glibc-5c8d1fc0f687643184ff7f8fe8e49a36d93bcc4f.zip |
Update.
* libio/fileops.c (_IO_new_file_xsputn): Use _IO_OVERFLOW instead of __overflow.
Diffstat (limited to 'libio')
-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 7c6e271495..52039a4a13 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -812,7 +812,7 @@ _IO_new_file_xsputn (f, data, n) { _IO_size_t block_size, do_write; /* Next flush the (full) buffer. */ - if (__overflow (f, EOF) == EOF) + if (_IO_OVERFLOW (f, EOF) == EOF) return n - to_do; /* Try to maintain alignment: write a whole number of blocks. |