diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-07-15 15:11:28 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-07-15 15:11:28 +0300 |
commit | 84658669a180b3f1e63d20b6ea166f7c5733786b (patch) | |
tree | 325c2cca89d5cd32f149d3bb472466461bd9f987 /builtin.c | |
parent | e0fb5433dc35f18d6a69a916f5bf4e90c796c356 (diff) | |
download | egawk-84658669a180b3f1e63d20b6ea166f7c5733786b.tar.gz egawk-84658669a180b3f1e63d20b6ea166f7c5733786b.tar.bz2 egawk-84658669a180b3f1e63d20b6ea166f7c5733786b.zip |
First set of minor fixes on 4.0 Stable.
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ efwrite(const void *ptr, if (fwrite(ptr, size, count, fp) != count) goto wrerror; if (flush - && (output_is_tty + && ((fp == stdout && output_is_tty) || (rp != NULL && (rp->flag & RED_NOBUF)))) { fflush(fp); if (ferror(fp)) |