summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2002-04-26 06:27:11 +0000
committerGurusamy Sarathy <gsar@cpan.org>2002-04-26 06:27:11 +0000
commit4bbc6d12636386d858939ccdfa3b6453cdf309df (patch)
tree1b9005f77eb255dd8d6ecfde56179c8a1d06b3f9 /op.c
parent5387ccf1031d2986d79b744c0c632d1e89cf4d3e (diff)
downloadperl-4bbc6d12636386d858939ccdfa3b6453cdf309df.tar.gz
temporary variable not wide enough to hold all the bits in
op->op_targ p4raw-id: //depot/perl@16180
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index f4740314cb..4f84f9afec 100644
--- a/op.c
+++ b/op.c
@@ -4241,7 +4241,7 @@ Perl_newFOROP(pTHX_ I32 flags,char *label,line_t forline,OP *sv,OP *expr,OP *blo
{
LOOP *loop;
OP *wop;
- int padoff = 0;
+ PADOFFSET padoff = 0;
I32 iterflags = 0;
if (sv) {