summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-03-04 19:59:20 +0000
committerNicholas Clark <nick@ccl4.org>2008-03-04 19:59:20 +0000
commitb84c11c86f265d1fdce77009906ee8b6bad88f6c (patch)
tree17b4806a09e03f675685f6a522ef463d76415350 /toke.c
parent1dcb720a51504d7b20fb1eac689c4efad1376736 (diff)
downloadperl-b84c11c86f265d1fdce77009906ee8b6bad88f6c.tar.gz
Three variables in S_scan_trans only hold flags for op_private, so can
be U8. p4raw-id: //depot/perl@33437
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toke.c b/toke.c
index 72a37c4316..431938fdbd 100644
--- a/toke.c
+++ b/toke.c
@@ -11074,9 +11074,9 @@ S_scan_trans(pTHX_ char *start)
register char* s;
OP *o;
short *tbl;
- I32 squash;
- I32 del;
- I32 complement;
+ U8 squash;
+ U8 del;
+ U8 complement;
#ifdef PERL_MAD
char *modstart;
#endif