From: Gisle Aas Date: Wed, 4 Jan 2006 10:25:42 +0000 (+0000) Subject: Silence compiler warning; ref change 26598 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe8247ebb5b1d41f5123d00da404f1a03c6a9e78;p=p5sagit%2Fp5-mst-13.2.git Silence compiler warning; ref change 26598 p4raw-id: //depot/perl@26633 --- diff --git a/op.c b/op.c index 8f8cb02..54d8f6d 100644 --- a/op.c +++ b/op.c @@ -3504,7 +3504,7 @@ Perl_newSTATEOP(pTHX_ I32 flags, char *label, OP *o) CopSTASH_set(cop, PL_curstash); if (PERLDB_LINE && PL_curstash != PL_debstash) { - SV * const * const svp = av_fetch(CopFILEAV(PL_curcop), (I32)CopLINE(cop), FALSE); + SV * const * const svp = av_fetch(CopFILEAVx(PL_curcop), (I32)CopLINE(cop), FALSE); if (svp && *svp != &PL_sv_undef ) { (void)SvIOK_on(*svp); SvIV_set(*svp, PTR2IV(cop));