diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-05 20:47:08 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-05 20:47:08 +0200 |
commit | c084ecfb72609150bdfdce04831e83bb0e4e5cb6 (patch) | |
tree | eaa0bdead01ef5eff8f815288cdc1c1583d0dbac /dfa.c | |
parent | 7bc4e38b948e20f3d72e06662691a527a50eecbf (diff) | |
download | egawk-c084ecfb72609150bdfdce04831e83bb0e4e5cb6.tar.gz egawk-c084ecfb72609150bdfdce04831e83bb0e4e5cb6.tar.bz2 egawk-c084ecfb72609150bdfdce04831e83bb0e4e5cb6.zip |
Fixes for Z/OS.
Diffstat (limited to 'dfa.c')
-rw-r--r-- | dfa.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1054,7 +1054,7 @@ parse_bracket_exp (void) if (MB_CUR_MAX > 1 && !pred->single_byte_only) { /* Store the character class as wctype_t. */ - wctype_t wt = wctype (class); + wctype_t wt = (wctype_t) wctype (class); REALLOC_IF_NECESSARY (work_mbc->ch_classes, ch_classes_al, |