projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
a851415
)
silence another signed/unsigned mismatch warning
Gurusamy Sarathy [Sat, 28 Dec 2002 02:16:51 +0000 (
02:16
+0000)]
p4raw-id: //depot/perl@18357
op.c
patch
|
blob
|
blame
|
history
diff --git
a/op.c
b/op.c
index
46347da
..
2368434
100644
(file)
--- 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;