Skip to content

Commit

Permalink
Fix compile error (macro substitution typo) (MarlinFirmware#16194)
Browse files Browse the repository at this point in the history
  • Loading branch information
randellhodges authored and philippniethammer committed Dec 21, 2019
1 parent e8803dd commit 8f51aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/Marlin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ void manage_inactivity(const bool ignore_stepper_queue/*=false*/) {
bool oldstatus;
switch (active_extruder) {
default:
#define _CASE_EN(N) case N: oldstatus = E##N_ENABLE_READ(); enable_E##N(); break;
#define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); enable_E##N(); break;
REPEAT(E_STEPPERS, _CASE_EN);
}
#endif
Expand Down

0 comments on commit 8f51aad

Please sign in to comment.