From 8e363ee070bb08736194c449747f77a2865253e9 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Wed, 22 Aug 2012 19:37:45 +0200 Subject: [PATCH] Remove warnings caused by output filenames containing % characters --- slic3r.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slic3r.pl b/slic3r.pl index 2990d5aa2..a4f5ca4d1 100755 --- a/slic3r.pl +++ b/slic3r.pl @@ -94,7 +94,7 @@ if (@ARGV) { # slicing from command line output_file => $opt{output}, status_cb => sub { my ($percent, $message) = @_; - printf "=> $message\n"; + printf "=> %s\n", $message; }, ); if ($opt{export_svg}) {