summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-07-01 07:49:30 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-07-01 07:49:30 +0300
commita4cbdf37b98a56f688f8e1be96666a6f109c0e38 (patch)
treeeb1beb95195f8f867b29a2211c69e1dc4ad79f58 /array.c
parent96d37ecb22d847499fbfab80c62894b64249b8c4 (diff)
parente8a8d49954bb50b2b67a88382e80fe63e738cd3f (diff)
downloadgawk-a4cbdf37b98a56f688f8e1be96666a6f109c0e38.tar.gz
Merge branch 'master' into feature/fixtype
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index ddd3c084..d9c80a35 100644
--- a/array.c
+++ b/array.c
@@ -711,7 +711,7 @@ value_info(NODE *n)
* an integer value.
*/
fprintf(output_fp, "FMT=\"%s\"",
- n->stfmt == STFMT_UNUSED ? "%s"
+ n->stfmt == STFMT_UNUSED ? "<unused>"
: fmt_list[n->stfmt]->stptr);
}