diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2016-06-30 09:59:47 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2016-06-30 09:59:47 -0400 |
commit | 92b5353bf364897f02003c4116cabe6d48ea17eb (patch) | |
tree | 3a942f5608c3065f49fa175ef688316e04daacc9 /builtin.c | |
parent | 2ab2d5f2c468b647615d984cb7953217c63695af (diff) | |
download | gawk-92b5353bf364897f02003c4116cabe6d48ea17eb.tar.gz |
Use new STFMT_UNUSED define to improve code clarity, and fix some minor stfmt issues.
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2204,7 +2204,7 @@ do_print(int nargs, int redirtype) if (tmp->type == Node_typedregex) args_array[i] = force_string(tmp); else if (!((tmp->flags & STRCUR) != 0 - && (tmp->stfmt == -1 || tmp->stfmt == OFMTidx))) + && (tmp->stfmt == STFMT_UNUSED || tmp->stfmt == OFMTidx))) args_array[i] = format_val(OFMT, OFMTidx, tmp); } |