浏览代码

Merge pull request #6915 from Bob-the-Kuhn/gcode.h-2

gcode.h - another compile error
Bob-the-Kuhn 7 年前
父节点
当前提交
4ecd41ef90
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/gcode.h

+ 1
- 1
Marlin/gcode.h 查看文件

@@ -227,7 +227,7 @@ public:
227 227
         return input_temp_units == TEMPUNIT_K ? 'K' : input_temp_units == TEMPUNIT_F ? 'F' : 'C';
228 228
       }
229 229
       FORCE_INLINE static char* temp_units_name() {
230
-        return input_temp_units == TEMPUNIT_K ? PSTR("Kelvin") : input_temp_units == TEMPUNIT_F ? PSTR("Fahrenheit") : PSTR("Celsius")
230
+        return input_temp_units == TEMPUNIT_K ? PSTR("Kelvin") : input_temp_units == TEMPUNIT_F ? PSTR("Fahrenheit") : PSTR("Celsius");
231 231
       }
232 232
       inline static float to_temp_units(const float &f) {
233 233
         switch (input_temp_units) {

正在加载...
取消
保存