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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-06-10 20:45:38 +0300
committerbubnikv <bubnikv@gmail.com>2019-06-10 20:45:38 +0300
commit313ec7424a9714ba6de64a94b7d4b89ebae05f91 (patch)
tree4baaa5d70eb7838eaa4e8c0cf8a203859f196f1e /src/slic3r/GUI/PresetBundle.cpp
parent6defabea537ba871070fc405a14c2173cb92fc89 (diff)
admesh refactoring: replaced various diagnostics outputs with boost::log
Diffstat (limited to 'src/slic3r/GUI/PresetBundle.cpp')
-rw-r--r--src/slic3r/GUI/PresetBundle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/PresetBundle.cpp b/src/slic3r/GUI/PresetBundle.cpp
index 45092f257..b28cb2eda 100644
--- a/src/slic3r/GUI/PresetBundle.cpp
+++ b/src/slic3r/GUI/PresetBundle.cpp
@@ -837,7 +837,7 @@ void PresetBundle::load_config_file_config_bundle(const std::string &path, const
return preset_name_dst;
// Try to generate another name.
char buf[64];
- sprintf(buf, " (%d)", i);
+ sprintf(buf, " (%d)", (int)i);
preset_name_dst = preset_name_src + buf + bundle_name;
}
}