summaryrefslogtreecommitdiff
path: root/command.y
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-05-04 23:05:28 +0300
committerArnold D. Robbins <arnold@skeeve.com>2011-05-04 23:05:28 +0300
commite7dced088c226280bcb1edb252011d6c186504e4 (patch)
tree868eabc52db1e4a08e1385868e1a56062e74ea40 /command.y
parent19093d5a231421594788d633e811859276d8f92f (diff)
downloadgawk-e7dced088c226280bcb1edb252011d6c186504e4.tar.gz
Fix problem with subarray of deleted array.
Diffstat (limited to 'command.y')
-rw-r--r--command.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.y b/command.y
index d9ecd0ab..bcaa74f0 100644
--- a/command.y
+++ b/command.y
@@ -1047,7 +1047,7 @@ again:
/* force a quit, and let do_quit (in debug.c) exit */
if (! seen_eof) {
if (errno != 0) {
- fprintf(stderr, _("can't read command (%s)"), strerror(errno));
+ fprintf(stderr, _("can't read command (%s)\n"), strerror(errno));
exit_val = EXIT_FAILURE;
} /* else
exit_val = EXIT_SUCCESS; */