Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorJason Tibbitts <tibbs@math.uh.edu>2019-05-20 19:00:38 +0300
committerbubnikv <bubnikv@gmail.com>2019-05-20 19:16:13 +0300
commit58d78e8dbdafae1e4b459fe4e439021796a87fcf (patch)
treedaf2ed2e0959aa97aa3ee55f18287c028644662a /xs
parent3975f4dda020588074822968d86ad46f66c8e337 (diff)
Fix two errors with -Werror=format-security
Fedora (and, I supposed, most recent Linux distros) build everything with -Werror=format-security. If you attempt to build with -DSLIC3R_PERL_XS (which we need in order to run the test suite), the build fails because of two strings in the Perl XS code: /usr/bin/perl -MExtUtils::XSpp::Cmd -e xspp -- -t "/builddir/build/BUILD/PrusaSlicer-version_2.0.0-rc2/xs/xsp/typemap.xspt" "/builddir/build/BUILD/PrusaSlicer-version_2.0.0-rc2/xs/xsp/Print.xsp":585:31: error: format not a string literal and no format arguments [-Werror=format-security] Ths fixes up two instances of that.
Diffstat (limited to 'xs')
-rw-r--r--xs/xsp/Print.xsp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs/xsp/Print.xsp b/xs/xsp/Print.xsp
index b8662dcd8..f4c04577d 100644
--- a/xs/xsp/Print.xsp
+++ b/xs/xsp/Print.xsp
@@ -165,7 +165,7 @@ _constant()
try {
THIS->process();
} catch (std::exception& e) {
- croak(e.what());
+ croak("%s\n", e.what());
}
%};
@@ -173,7 +173,7 @@ _constant()
try {
THIS->export_gcode(path_template, nullptr);
} catch (std::exception& e) {
- croak(e.what());
+ croak("%s\n", e.what());
}
%};