We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59bca40 commit 526049bCopy full SHA for 526049b
toke.c
@@ -4616,10 +4616,10 @@ S_intuit_more(pTHX_ char *s, char *e)
4616
* identifier already found in the program by that name. If so,
4617
* strongly suspect this isn't a character class */
4618
if (isWORDCHAR_lazy_if_safe(s+1, PL_bufend, UTF)) {
4619
- int len;
+ Size_t len;
4620
char tmpbuf[ C_ARRAY_LENGTH(PL_tokenbuf) * 4 ];
4621
scan_ident(s, tmpbuf, C_ARRAY_END(tmpbuf), FALSE);
4622
- len = (int)strlen(tmpbuf);
+ len = strlen(tmpbuf);
4623
if ( len > 1
4624
&& gv_fetchpvn_flags(tmpbuf,
4625
len,
0 commit comments