summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChip Salzenberg <chip@perl.com>1997-04-24 02:27:36 +1200
committerChip Salzenberg <chip@atlantic.net>1997-04-27 00:00:00 +1200
commit8a38ab241313ca4a51b5fc5b36b207cdb71be4db (patch)
tree80ddd62046041f3336027077b4054e18da117d63
parent8b10511d03f06e2bc36e4d866861ec81d92d48fc (diff)
downloadperl-8a38ab241313ca4a51b5fc5b36b207cdb71be4db.tar.gz
Fix lingering '%S' in XS_VERSION_BOOTCHECK
-rw-r--r--XSUB.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/XSUB.h b/XSUB.h
index 65c33c9a4e..a7987f419e 100644
--- a/XSUB.h
+++ b/XSUB.h
@@ -49,7 +49,7 @@
Sv = perl_get_sv(vn = form("%s::VERSION", module), FALSE); \
} \
if (Sv && (!SvOK(Sv) || strNE(XS_VERSION, SvPV(Sv, na)))) \
- croak("%s object version %s does not match $%s %S", \
+ croak("%s object version %s does not match $%s %_", \
module, XS_VERSION, vn, Sv); \
} STMT_END
#else