summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-04 03:06:19 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-04 03:06:19 -0600
commitef3f7081a3ad6d252841b30ef3dd9e5c767a1047 (patch)
tree173ce65e00c7bb6fa66844c36db1fbc46318322b
parent80a2d1f8d5e461f34556844228863faf5104b98d (diff)
downloadlibtqt-perl-ef3f7081.tar.gz
libtqt-perl-ef3f7081.zip
Fix FTBFS on Wheezy
-rw-r--r--PerlTQt/TQt.xs4
1 files changed, 2 insertions, 2 deletions
diff --git a/PerlTQt/TQt.xs b/PerlTQt/TQt.xs
index a27aa0f..8032e8e 100644
--- a/PerlTQt/TQt.xs
+++ b/PerlTQt/TQt.xs
@@ -959,7 +959,7 @@ XS(XS_AUTOLOAD) {
delete[] package;
if(SvTRUE(ERRSV))
- croak(SvPV_nolen(ERRSV));
+ croak("%s", SvPV_nolen(ERRSV));
ST(0) = sv_2mortal(ret);
XSRETURN(1);
}
@@ -1081,7 +1081,7 @@ XS(XS_AUTOLOAD) {
else if(isSuper)
delete[] package;
delete[] savestack;
- croak(SvPV_nolen(ERRSV));
+ croak("%s", SvPV_nolen(ERRSV));
}
// Success. Cache result.