Skip to content

Commit 9a0286d

Browse files
randellhodgesLinoBarreca
authored andcommitted
Fix compile error (macro substitution typo) (MarlinFirmware#16194)
1 parent a93e1cd commit 9a0286d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Marlin/src/Marlin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ void manage_inactivity(const bool ignore_stepper_queue/*=false*/) {
553553
bool oldstatus;
554554
switch (active_extruder) {
555555
default:
556-
#define _CASE_EN(N) case N: oldstatus = E##N_ENABLE_READ(); enable_E##N(); break;
556+
#define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); enable_E##N(); break;
557557
REPEAT(E_STEPPERS, _CASE_EN);
558558
}
559559
#endif

0 commit comments

Comments
 (0)