summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-08-03 19:12:08 -0600
committerKarl Williamson <khw@cpan.org>2022-08-03 19:15:08 -0600
commita2b22270f3af59c82af647bc8a155a62b9dea494 (patch)
treeee0ad8b98b9ab54dc36684e05d4677bbae084ae8 /toke.c
parent605171409a069663c2e8c6e670d319cd1be95c4b (diff)
downloadperl-a2b22270f3af59c82af647bc8a155a62b9dea494.tar.gz
toke.c: Variable should be decleared Size_t, not SSize_t
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index b68099d422..895dd173fe 100644
--- a/toke.c
+++ b/toke.c
@@ -852,7 +852,7 @@ Perl_lex_start(pTHX_ SV *line, PerlIO *rsfp, U32 flags)
Newxz(parser->lex_shared, 1, LEXSHARED);
if (line) {
- STRLEN len;
+ Size_t len;
const U8* first_bad_char_loc;
s = SvPV_const(line, len);