diff options
author | Karl Williamson <khw@cpan.org> | 2015-11-06 09:11:55 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-12-05 22:06:49 -0700 |
commit | 4c8cd60559ce65964c5e42f43021ce23dc89819e (patch) | |
tree | 1820d5f4f946871e893aa5cd4f422c81e1913d0f /toke.c | |
parent | 6bff35fff38fc88b3e093f077f3c1a157a34d0e7 (diff) | |
download | perl-4c8cd60559ce65964c5e42f43021ce23dc89819e.tar.gz |
utf8.h, et.al.: Clean up some casts
By making sure the no-op macros cast the output appropriately, we can
eliminate the casts that have been added in things that call them
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3593,7 +3593,7 @@ S_scan_const(pTHX_ char *start) /* The regex compiler is * expecting Unicode, not * native */ - (U8) NATIVE_TO_LATIN1(*str)); + NATIVE_TO_LATIN1(*str)); PERL_MY_SNPRINTF_POST_GUARD(len, sizeof(hex_string)); Copy(hex_string, d, 3, char); |