Fix some compiler warnings

This commit is contained in:
Scott Lahteine 2017-12-25 08:51:35 -06:00
parent 4f943a73bc
commit 5f0026893f
3 changed files with 5 additions and 5 deletions

View file

@ -2279,7 +2279,7 @@ void kill_screen(const char* lcd_msg) {
* Save Bed Mesh
*/
void _lcd_ubl_storage_mesh() {
uint16_t a = settings.calc_num_meshes();
int16_t a = settings.calc_num_meshes();
START_MENU();
MENU_BACK(MSG_UBL_LEVEL_BED);
if (!WITHIN(ubl_storage_slot, 0, a - 1)) {