diff options
author | Karl Williamson <khw@cpan.org> | 2019-11-07 10:41:28 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-11-07 10:49:55 -0700 |
commit | 8b4eae17ee698efd0058dcf19153c32fdaa2b02e (patch) | |
tree | 041bbae36526add09f78db540eb5a75bf2e7c520 /doop.c | |
parent | 240494d6992696a7a350217c131e1d5dc1444a0c (diff) | |
download | perl-8b4eae17ee698efd0058dcf19153c32fdaa2b02e.tar.gz |
Silence some compiler warnings
These were introduced in the tr/// changes in the series
merged in 240494d6992696a7a350217c131e1d5dc1444a0c
Diffstat (limited to 'doop.c')
-rw-r--r-- | doop.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -390,7 +390,7 @@ S_do_trans_invmap(pTHX_ SV * const sv, AV * const invmap) const bool delete_unfound = cBOOL(PL_op->op_private & OPpTRANS_DELETE); bool inplace = ! cBOOL(PL_op->op_private & OPpTRANS_GROWS); const UV* from_array = invlist_array(from_invlist); - UV final_map; + UV final_map = TR_OOB; bool out_is_utf8 = cBOOL(SvUTF8(sv)); STRLEN s_len; |