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
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-01-02 13:14:22 +0300
committerbubnikv <bubnikv@gmail.com>2018-01-02 13:14:22 +0300
commitfec05d430baebdcd93607b69750513cc4c606be6 (patch)
treed059fd3202474fb15ba5c03e78df9d1a7e0dbd2f /xs
parent02256e900f1ce0cb4a1e108c2d7ccf208718b98e (diff)
Fixed a typo in fprintf
Diffstat (limited to 'xs')
-rw-r--r--xs/src/libslic3r/GCode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/GCode.cpp b/xs/src/libslic3r/GCode.cpp
index 6da860d36..47bd6bc07 100644
--- a/xs/src/libslic3r/GCode.cpp
+++ b/xs/src/libslic3r/GCode.cpp
@@ -786,7 +786,7 @@ void GCode::_do_export(Print &print, FILE *file)
print.total_extruded_volume = print.total_extruded_volume + extruded_volume;
}
_write_format(file, "; total filament cost = %.1lf\n", print.total_cost);
- _write_format(file, "; estimated printing time = %s\n", m_time_estimator.get_time_hms());
+ _write_format(file, "; estimated printing time = %s\n", m_time_estimator.get_time_hms().c_str());
// Append full config.
_write(file, "\n");