diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2002-04-26 06:27:11 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2002-04-26 06:27:11 +0000 |
commit | 4bbc6d12636386d858939ccdfa3b6453cdf309df (patch) | |
tree | 1b9005f77eb255dd8d6ecfde56179c8a1d06b3f9 /op.c | |
parent | 5387ccf1031d2986d79b744c0c632d1e89cf4d3e (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |