Browse Source

G4 could wait for an undefined time

Got:
Marlin_main.cpp:1689: warning: 'codenum' may be used uninitialized in this function

And indeed codenum is undefined when no parameter is given.
AnHardt 9 years ago
parent
commit
b94dd33641
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -1690,7 +1690,7 @@ inline void gcode_G2_G3(bool clockwise) {
1690 1690
  * G4: Dwell S<seconds> or P<milliseconds>
1691 1691
  */
1692 1692
 inline void gcode_G4() {
1693
-  unsigned long codenum;
1693
+  unsigned long codenum=0;
1694 1694
 
1695 1695
   LCD_MESSAGEPGM(MSG_DWELL);
1696 1696
 

Loading…
Cancel
Save