summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-02-14 16:53:47 -0700
committerKarl Williamson <khw@cpan.org>2022-02-14 17:08:39 -0700
commitd84870c8e4508570b12bc7cd28704ca04b63a367 (patch)
treed99092b42326d9232abac11be0bba91f1b355a65 /toke.c
parent01214b7705aa076e42b3a1a85cf151b28eb0facf (diff)
downloadperl-d84870c8e4508570b12bc7cd28704ca04b63a367.tar.gz
toke.c: I32 considered harmful; change to 'int'
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 bd74142305..f68a50076a 100644
--- a/toke.c
+++ b/toke.c
@@ -11327,7 +11327,7 @@ Perl_scan_str(pTHX_ char *start, int keep_bracketed_quoted, int keep_delims, int
char *s = start; /* current position in the buffer */
char term; /* terminating character */
char *to; /* current position in the sv's data */
- I32 brackets = 1; /* bracket nesting level */
+ int brackets = 1; /* bracket nesting level */
bool d_is_utf8 = FALSE; /* is there any utf8 content? */
IV termcode; /* terminating char. code */
U8 termstr[UTF8_MAXBYTES+1]; /* terminating string */