Ver código fonte

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

gcode.h - another compile error
Bob-the-Kuhn 7 anos atrás
pai
commit
4ecd41ef90
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      Marlin/gcode.h

+ 1
- 1
Marlin/gcode.h Ver arquivo

@@ -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) {

Carregando…
Cancelar
Salvar