Fix compiler warnings

This commit is contained in:
Scott Lahteine
2017-12-25 08:48:54 -06:00
parent 95b82ae5e3
commit 4ef965cc40
3 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ void GcodeSuite::M420() {
#if ENABLED(EEPROM_SETTINGS)
const int8_t storage_slot = parser.has_value() ? parser.value_int() : ubl.storage_slot;
const uint16_t a = settings.calc_num_meshes();
const int16_t a = settings.calc_num_meshes();
if (!a) {
SERIAL_PROTOCOLLNPGM("?EEPROM storage not available.");