From: Rafael Garcia-Suarez Date: Sat, 6 Dec 2003 21:33:22 +0000 (+0000) Subject: Missing thingies. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=243d6ab3aef600d61cccf45a3b1140e272a49e86;p=p5sagit%2Fp5-mst-13.2.git Missing thingies. p4raw-id: //depot/perl@21863 --- diff --git a/pp.c b/pp.c index 7872c1e..6b06c97 100644 --- a/pp.c +++ b/pp.c @@ -106,7 +106,7 @@ PP(pp_padhv) RETURNOP(do_kv()); } else if (gimme == G_SCALAR) { - SV* sv = Perl_hv_scalar((HV*)TARG); + SV* sv = Perl_hv_scalar(aTHX_ (HV*)TARG); SETs(sv); } RETURN; diff --git a/pp_hot.c b/pp_hot.c index d8ccf6d..208d89b 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -901,7 +901,7 @@ PP(pp_rv2hv) } else if (gimme == G_SCALAR) { dTARGET; - TARG = Perl_hv_scalar(hv); + TARG = Perl_hv_scalar(aTHX_ hv); SETTARG; } RETURN;