Explorar el Código

Fix for thePR #5267 (Introduce a +1234.56 format for over 999 steps/mm)

・Fix memory leak
esenapaj hace 7 años
padre
commit
da67037550
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/utility.cpp

+ 1
- 1
Marlin/utility.cpp Ver fichero

@@ -35,7 +35,7 @@ void safe_delay(millis_t ms) {
35 35
 
36 36
 #if ENABLED(ULTRA_LCD)
37 37
 
38
-  char conv[8];
38
+  char conv[9];
39 39
 
40 40
   #define DIGIT(n) ('0' + (n))
41 41
   #define DIGIMOD(n, f) DIGIT((n)/(f) % 10)

Loading…
Cancelar
Guardar