diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-03-25 22:56:02 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-03-25 22:56:02 +0300 |
commit | c5d46e712f917385b2291c6acb3fc323b4b8d16c (patch) | |
tree | c9af627fafa8646e2a81f65039c0fb3b2ec4036a /io.c | |
parent | 95997cea4be726f78f24215b4c6427fbf337cdb2 (diff) | |
parent | d37c160b819d3a828fac6ed037e835158ac23c85 (diff) | |
download | egawk-c5d46e712f917385b2291c6acb3fc323b4b8d16c.tar.gz egawk-c5d46e712f917385b2291c6acb3fc323b4b8d16c.tar.bz2 egawk-c5d46e712f917385b2291c6acb3fc323b4b8d16c.zip |
Merge branch 'master' into feature/api-parser
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1439,7 +1439,7 @@ flush_io() // now for all open redirections for (rp = red_head; rp != NULL; rp = rp->next) { - void (*messagefunc)(const char *mesg, ...) = fatal; + void (*messagefunc)(const char *mesg, ...) = r_fatal; /* flush both files and pipes, what the heck */ if ((rp->flag & RED_WRITE) != 0 && rp->output.fp != NULL) { @@ -1447,7 +1447,7 @@ flush_io() update_ERRNO_int(errno); if (is_non_fatal_redirect(rp->value, strlen(rp->value))) - messagefunc = warning; + messagefunc = r_warning; if ((rp->flag & RED_PIPE) != 0) messagefunc(_("pipe flush of `%s' failed (%s)."), |