diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/input.c | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 379672f..e6d6cbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * Add printf support for format string a, A, and F. * Handle embedded NULs correctly in printf. + * Replace open-coded flushall in preadbuffer. 2014-10-13 Eric Blake <eblake@redhat.com> diff --git a/src/input.c b/src/input.c index 9e533a4..f11ac84 100644 --- a/src/input.c +++ b/src/input.c @@ -245,10 +245,7 @@ preadbuffer(void) } if (unlikely(parsenleft == EOF_NLEFT || parsefile->buf == NULL)) return PEOF; - flushout(&output); -#ifdef FLUSHERR - flushout(&errout); -#endif + flushall(); more = parselleft; if (more <= 0) { |