Browse Source

Merge pull request #5271 from esenapaj/Fix-for-the-PR-#5267

Fix for thePR #5267 (Introduce a +1234.56 format for over 999 steps/mm)
Scott Lahteine 8 years ago
parent
commit
38466b1d2f
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