Browse Source

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

・Fix memory leak
esenapaj 7 years ago
parent
commit
da67037550
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/utility.cpp

+ 1
- 1
Marlin/utility.cpp View File

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

Loading…
Cancel
Save