aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-03-05 06:00:03 +0200
committerArnold D. Robbins <arnold@skeeve.com>2014-03-05 06:00:03 +0200
commita76a789747458e3690e44ee81332099a3f80c156 (patch)
treeed4622b719fe6e8d1f466f587f7bd25455b7337c /io.c
parentabe4984928229338afd2dc9bbeb95bb9f361ef94 (diff)
downloadegawk-a76a789747458e3690e44ee81332099a3f80c156.tar.gz
egawk-a76a789747458e3690e44ee81332099a3f80c156.tar.bz2
egawk-a76a789747458e3690e44ee81332099a3f80c156.zip
Continue to straighten out enum usage.
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 3e527da0..b0b60deb 100644
--- a/io.c
+++ b/io.c
@@ -3968,7 +3968,7 @@ init_output_wrapper(awk_output_buf_t *outbuf)
outbuf->mode = NULL;
outbuf->fp = NULL;
outbuf->opaque = NULL;
- outbuf->redirected = false;
+ outbuf->redirected = awk_false;
outbuf->gawk_fwrite = gawk_fwrite;
outbuf->gawk_fflush = gawk_fflush;
outbuf->gawk_ferror = gawk_ferror;