From 5c8d1fc0f687643184ff7f8fe8e49a36d93bcc4f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 25 Aug 1999 04:38:09 +0000 Subject: [PATCH] Update. * libio/fileops.c (_IO_new_file_xsputn): Use _IO_OVERFLOW instead of __overflow. --- ChangeLog | 3 +++ libio/fileops.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ea210bb..f296f0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-08-24 Ulrich Drepper + * libio/fileops.c (_IO_new_file_xsputn): Use _IO_OVERFLOW instead + of __overflow. + * conform/conformtest.pl (@headers): Add monetary.h-data, mqueue.h-data, ndbm.h-data, nl_types.h-data, and poll.h-data. * conform/data/monetary.h-data: New file. diff --git a/libio/fileops.c b/libio/fileops.c index 7c6e271..52039a4 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. -- 2.7.4