From: Chip Salzenberg <chip@perl.com>
Date: Wed, 23 Apr 1997 14:27:36 +0000 (+1200)
Subject: Fix lingering '%S' in XS_VERSION_BOOTCHECK
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8a38ab241313ca4a51b5fc5b36b207cdb71be4db;p=p5sagit%2Fp5-mst-13.2.git

Fix lingering '%S' in XS_VERSION_BOOTCHECK
---

diff --git a/XSUB.h b/XSUB.h
index 65c33c9..a7987f4 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