From 92251a1e8193b999333214e50ccc11dd92ebe55e Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Sat, 28 Dec 2002 02:16:51 +0000 Subject: [PATCH] silence another signed/unsigned mismatch warning p4raw-id: //depot/perl@18357 --- op.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op.c b/op.c index 46347da..2368434 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; -- 2.7.4