summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2002-12-28 02:16:51 +0000
committerGurusamy Sarathy <gsar@cpan.org>2002-12-28 02:16:51 +0000
commit92251a1e8193b999333214e50ccc11dd92ebe55e (patch)
tree22de59c05bda043f99550a53531faef8fa56fb2a /op.c
parenta851415792965d66d6f2a06d1e524fa24a017ec5 (diff)
downloadperl-92251a1e8193b999333214e50ccc11dd92ebe55e.tar.gz
silence another signed/unsigned mismatch warning
p4raw-id: //depot/perl@18357
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 46347da306..2368434da8 100644
--- a/op.c
+++ b/op.c
@@ -3108,7 +3108,7 @@ Perl_newASSIGNOP(pTHX_ I32 flags, OP *left, I32 optype, OP *right)
curop->op_type == OP_PADANY)
{
if (PAD_COMPNAME_GEN(curop->op_targ)
- == PL_generation)
+ == (STRLEN)PL_generation)
break;
PAD_COMPNAME_GEN(curop->op_targ)
= PL_generation;