diff options
author | Artur Bergman <sky@nanisky.com> | 2003-04-02 18:01:40 +0000 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2003-04-02 18:01:40 +0000 |
commit | 05f5af9aed1b243131a469af567639a4a449cc7f (patch) | |
tree | 926b40ecb245d55684f6d9177e9e81650ce67fa4 | |
parent | 081fc587427bbceff63d5141014aee022b3f9dd6 (diff) | |
download | perl-05f5af9aed1b243131a469af567639a4a449cc7f.tar.gz |
Fix some small nits, thanks to Rafael.
p4raw-id: //depot/perl@19134
-rw-r--r-- | pp_hot.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2930,13 +2930,13 @@ S_method_common(pTHX_ SV* meth, U32* hashp) if(SvOK(sv) && (packname = SvPV(sv, packlen))) { HE* he = hv_fetch_ent(PL_stashcache, sv, 0, 0); if (he) { - stash = HeVAL(he); + stash = (HV*)HeVAL(he); goto fetch; } } if (!SvOK(sv) || - !(packname = SvPV(sv, packlen)) || + !(packname) || !(iogv = gv_fetchpv(packname, FALSE, SVt_PVIO)) || !(ob=(SV*)GvIO(iogv))) { @@ -2957,7 +2957,7 @@ S_method_common(pTHX_ SV* meth, U32* hashp) packsv = sv; else { SvREFCNT_inc((SV*)stash); - if(!hv_store(PL_stashcache, packname, packlen, stash, 0)) + if(!hv_store(PL_stashcache, packname, packlen, (SV*)stash, 0)) SvREFCNT_dec((SV*)stash); } goto fetch; |