Drop extra parens from address-of operator
This commit is contained in:
parent
0bf5add075
commit
7ba7474a73
@ -6967,7 +6967,7 @@ inline void gcode_M111() {
|
|||||||
for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
|
for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
|
||||||
if (TEST(marlin_debug_flags, i)) {
|
if (TEST(marlin_debug_flags, i)) {
|
||||||
if (comma++) SERIAL_CHAR(',');
|
if (comma++) SERIAL_CHAR(',');
|
||||||
serialprintPGM((char*)pgm_read_word(&(debug_strings[i])));
|
serialprintPGM((char*)pgm_read_word(&debug_strings[i]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user