diff options
author | Robin Barker <RMBarker@cpan.org> | 2003-01-28 13:27:17 +0000 |
---|---|---|
committer | hv <hv@crypt.org> | 2003-02-12 02:20:39 +0000 |
commit | e3feee4e511b83331e79ac04619b8ea753bb64aa (patch) | |
tree | 1bba0ebfeb41bc6f32680b354edcb74524d8c473 /universal.c | |
parent | f3583277f058a41c88989ac547f12b7065567d88 (diff) | |
download | perl-e3feee4e511b83331e79ac04619b8ea753bb64aa.tar.gz |
to silence compiler warning
Message-ID: <533D273D4014D411AB1D00062938C4D9040462CC@hotel.npl.co.uk>
p4raw-id: //depot/perl@18697
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/universal.c b/universal.c index f7b869135b..2cb89f66a5 100644 --- a/universal.c +++ b/universal.c @@ -340,7 +340,8 @@ XS(XS_UNIVERSAL_VERSION) req = new_version(req); if ( vcmp( SvRV(req), SvRV(sv) ) > 0 ) - Perl_croak(aTHX_ "%s version %_ required--this is only version %_", + Perl_croak(aTHX_ + "%s version %"SVf" required--this is only version %"SVf, HvNAME(pkg), req, sv); } |