]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Silence a visibility warning
authorVincent Pit <vince@profvince.com>
Mon, 19 Jan 2009 20:05:36 +0000 (21:05 +0100)
committerVincent Pit <vince@profvince.com>
Mon, 19 Jan 2009 20:05:36 +0000 (21:05 +0100)
indirect.xs

index c90f3b67e0d63d539aeeb2358c9bef232bc38c05..65b4a50b900e23d8ab36b63d68dcc841d8a913e3 100644 (file)
@@ -222,9 +222,9 @@ STATIC OP *indirect_ck_rv2sv(pTHX_ OP *o) {
    }
    default:
     if ((PL_opargs[type] & OA_CLASS_MASK) == OA_SVOP) {
-     SV *sv = cSVOPx_sv(op);
-     if (SvPOK(sv) && (SvTYPE(sv) >= SVt_PV))
-      name = SvPV_const(sv, len);
+     SV *nsv = cSVOPx_sv(op);
+     if (SvPOK(nsv) && (SvTYPE(nsv) >= SVt_PV))
+      name = SvPV_const(nsv, len);
     }
   }
   if (!name)