Fix unused variable warnings (#14643)

This commit is contained in:
Marcio Teixeira 2019-07-17 02:16:10 -06:00 committed by Scott Lahteine
parent 06324df072
commit 57ed063ba1

View file

@ -668,6 +668,8 @@ namespace ExtUI {
&& (linked_nozzles || active_extruder == 0) && (linked_nozzles || active_extruder == 0)
#endif #endif
) zprobe_zoffset += mm; ) zprobe_zoffset += mm;
#else
UNUSED(mm);
#endif #endif
#if EXTRUDERS > 1 #if EXTRUDERS > 1
@ -687,6 +689,7 @@ namespace ExtUI {
} }
#else #else
UNUSED(linked_nozzles); UNUSED(linked_nozzles);
UNUSED(mm);
#endif #endif
} }