From: Nicholas Clark Date: Tue, 10 Dec 2002 19:59:18 +0000 (+0000) Subject: operation on `PL_na' may be undefined X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0773b1f011791ecd1735dad376fcc533a738a2f0;p=p5sagit%2Fp5-mst-13.2.git operation on `PL_na' may be undefined Message-ID: <20021210195917.GJ288@Bagpuss.unfortu.net> p4raw-id: //depot/perl@18341 --- diff --git a/universal.c b/universal.c index 533d843..9764ee4 100644 --- a/universal.c +++ b/universal.c @@ -338,8 +338,8 @@ XS(XS_UNIVERSAL_VERSION) req = new_version(req); if ( vcmp( SvRV(req), SvRV(sv) ) > 0 ) - Perl_croak(aTHX_ "%s version %s required--this is only version %s", - HvNAME(pkg), SvPV(req,PL_na), SvPV(sv,PL_na)); + Perl_croak(aTHX_ "%s version %_ required--this is only version %_", + HvNAME(pkg), req, sv); } ST(0) = sv;