aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xChangeLog6
-rw-r--r--io.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 76ff7fc9..02c12bf5 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-09-21 Arnold D. Robbins <arnold@skeeve.com>
+
+ * io.c (fork_and_open_slave_pty): Move an errant close brace
+ inside the #endif so that gawk will compile on AIX. Thanks to
+ Fredrik Laurin <fredrik_laurin@yahoo.se> for the report.
+
2018-09-18 Arnold D. Robbins <arnold@skeeve.com>
* NEWS: Fix typo in gettext version.
diff --git a/io.c b/io.c
index 18c2adb9..3d90e71b 100644
--- a/io.c
+++ b/io.c
@@ -2104,8 +2104,8 @@ fork_and_open_slave_pty(const char *slavenam, int master, const char *command, p
}
return true;
-}
#endif
+}
#endif /* defined(HAVE_TERMIOS_H) */