summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2016-11-03 10:54:36 +0000
committerDavid Mitchell <davem@iabyn.com>2016-11-03 10:54:36 +0000
commit11288bb3e74d2953b4018f5548f558aa24f9888f (patch)
tree4a449c6999f3d75be79aa80b32dc6665b33539d7 /proto.h
parent0285a2509078d5299c24b8108feef4fec9232bf6 (diff)
downloadperl-11288bb3e74d2953b4018f5548f558aa24f9888f.tar.gz
Make toke.c:S_lop's x arg a U8 to match PL_expect
The second argument to S_lop() is an int, but it gets stored in PL_expect which is a U8. If we need a U8, then let's bring it into the function as a U8.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 670801698d..2e6dbf2f27 100644
--- a/proto.h
+++ b/proto.h
@@ -5488,7 +5488,7 @@ STATIC int S_intuit_method(pTHX_ char *s, SV *ioname, CV *cv);
STATIC int S_intuit_more(pTHX_ char *s);
#define PERL_ARGS_ASSERT_INTUIT_MORE \
assert(s)
-STATIC I32 S_lop(pTHX_ I32 f, int x, char *s);
+STATIC I32 S_lop(pTHX_ I32 f, U8 x, char *s);
#define PERL_ARGS_ASSERT_LOP \
assert(s)
PERL_STATIC_NO_RET void S_missingterm(pTHX_ char *s)