diff options
author | Andy Lester <andy@petdance.com> | 2016-11-03 10:54:36 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-11-03 10:54:36 +0000 |
commit | 11288bb3e74d2953b4018f5548f558aa24f9888f (patch) | |
tree | 4a449c6999f3d75be79aa80b32dc6665b33539d7 /proto.h | |
parent | 0285a2509078d5299c24b8108feef4fec9232bf6 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |