Skip to content

Commit

Permalink
Fix compiler warning (#15642)
Browse files Browse the repository at this point in the history
  • Loading branch information
coding-pivo committed Oct 27, 2020
1 parent 4183b90 commit 9275408
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Marlin/planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1169,8 +1169,11 @@ void Planner::recalculate() {
* Maintain fans, paste extruder pressure,
*/
void Planner::check_axes_activity() {
unsigned char axis_active[NUM_AXIS] = { 0 },
tail_fan_speed[FAN_COUNT];
uint8_t axis_active[NUM_AXIS] = { 0 };

#if FAN_COUNT > 0
uint8_t tail_fan_speed[FAN_COUNT] = { 0 };
#endif

#if ENABLED(BARICUDA)
#if HAS_HEATER_1
Expand Down

0 comments on commit 9275408

Please sign in to comment.