From: Jarkko Hietaniemi Date: Sun, 29 Aug 1999 10:47:30 +0000 (+0000) Subject: Fix a typo in #4036. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=316ad4fe4f1e1e3b0bcefe5896050dafc25b7449;p=p5sagit%2Fp5-mst-13.2.git Fix a typo in #4036. p4raw-id: //depot/cfgperl@4041 --- diff --git a/mg.c b/mg.c index 1a2e4ab..f50e4a0 100644 --- a/mg.c +++ b/mg.c @@ -93,7 +93,7 @@ Perl_mg_get(pTHX_ SV *sv) while ((mg = *mgp) != 0) { MGVTBL* vtbl = mg->mg_virtual; if (!(mg->mg_flags & MGf_GSKIP) && vtbl && (vtbl->svt_get != NULL)) { - CALL_FTPR(vtbl->svt_get)(aTHX_ sv, mg); + CALL_FPTR(vtbl->svt_get)(aTHX_ sv, mg); /* Ignore this magic if it's been deleted */ if ((mg == (mgp_valid ? *mgp : SvMAGIC(sv))) && (mg->mg_flags & MGf_GSKIP))