diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2002-12-28 02:16:51 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2002-12-28 02:16:51 +0000 |
commit | 92251a1e8193b999333214e50ccc11dd92ebe55e (patch) | |
tree | 22de59c05bda043f99550a53531faef8fa56fb2a /op.c | |
parent | a851415792965d66d6f2a06d1e524fa24a017ec5 (diff) | |
download | perl-92251a1e8193b999333214e50ccc11dd92ebe55e.tar.gz |
silence another signed/unsigned mismatch warning
p4raw-id: //depot/perl@18357
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |