mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-19 08:08:25 +00:00
🩹 Suppress G33 string warning (#26095)
This commit is contained in:
parent
91c6a7180d
commit
6379d4dbca
1 changed files with 1 additions and 1 deletions
|
@ -649,7 +649,7 @@ void GcodeSuite::G33() {
|
||||||
SERIAL_ECHOLNPGM("Save with M500 and/or copy to Configuration.h");
|
SERIAL_ECHOLNPGM("Save with M500 and/or copy to Configuration.h");
|
||||||
}
|
}
|
||||||
else { // !end iterations
|
else { // !end iterations
|
||||||
SString<14> msg;
|
SString<15> msg;
|
||||||
if (iterations < 31)
|
if (iterations < 31)
|
||||||
msg.setf(F("Iteration : %02i"), (unsigned int)iterations);
|
msg.setf(F("Iteration : %02i"), (unsigned int)iterations);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue