Browse Source

🩹 Init var to suppress invalid warning (#22396)

vanilla_fb_2.0.x
vyacheslav-shubin 3 years ago
committed by Scott Lahteine
parent
commit
c944e4fc60
  1. 3
      Marlin/src/gcode/bedlevel/mbl/G29.cpp

3
Marlin/src/gcode/bedlevel/mbl/G29.cpp

@ -70,7 +70,8 @@ void GcodeSuite::G29() {
return; return;
} }
int8_t ix, iy = 0; int8_t ix, iy;
ix = iy = 0;
switch (state) { switch (state) {
case MeshReport: case MeshReport:

Loading…
Cancel
Save