diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | field.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2017-04-10 Andrew J. Schorr <aschorr@telemetry-investments.com> + + * field.c (set_FIELDWIDTHS): Set use_chars to awk_true, since its + type is awk_bool_t. + 2017-04-09 Andrew J. Schorr <aschorr@telemetry-investments.com> * field.c (fw_parse_field): Edit comment about resetting shift state. @@ -1150,7 +1150,7 @@ set_FIELDWIDTHS() if (FIELDWIDTHS == NULL) { emalloc(FIELDWIDTHS, awk_fieldwidth_info_t *, awk_fieldwidth_info_size(fw_alloc), "set_FIELDWIDTHS"); - FIELDWIDTHS->use_chars = true; + FIELDWIDTHS->use_chars = awk_true; } FIELDWIDTHS->nf = 0; for (i = 0; ; i++) { |