diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-07-01 07:44:48 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-07-01 07:44:48 +0300 |
commit | 17fde7572b0a1661dac6e77f74a74220b34da555 (patch) | |
tree | d08f0b9dd8b164ead8c3bc842a2376f8ee14777f /array.c | |
parent | 2234a195e67bd8f62ad6965ec85f8bd9a0c8a951 (diff) | |
parent | e8a8d49954bb50b2b67a88382e80fe63e738cd3f (diff) | |
download | egawk-17fde7572b0a1661dac6e77f74a74220b34da555.tar.gz egawk-17fde7572b0a1661dac6e77f74a74220b34da555.tar.bz2 egawk-17fde7572b0a1661dac6e77f74a74220b34da555.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'array.c')
-rw-r--r-- | array.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -704,7 +704,7 @@ value_info(NODE *n) if ((n->flags & (STRING|STRCUR)) == STRCUR) { fprintf(output_fp, "]["); fprintf(output_fp, "stfmt=%d, ", n->stfmt); - fprintf(output_fp, "CONVFMT=\"%s\"", n->stfmt <= -1 ? "%ld" + fprintf(output_fp, "CONVFMT=\"%s\"", n->stfmt <= -1 ? "<unused>" : fmt_list[n->stfmt]->stptr); } |