Skip to content
Snippets Groups Projects
Commit 2a7f1091 authored by randellhodges's avatar randellhodges Committed by Scott Lahteine
Browse files

Fix compile error (macro substitution typo) (#16194)

parent 3d4aa015
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment