From 9890141f7b7f0ac5b827134f0da95ebe9addec7c Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Wed, 3 May 2017 17:28:09 -0500 Subject: [PATCH] M100 tweak --- Marlin/M100_Free_Mem_Chk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/M100_Free_Mem_Chk.cpp b/Marlin/M100_Free_Mem_Chk.cpp index 24290d50a..9c31aa6f9 100644 --- a/Marlin/M100_Free_Mem_Chk.cpp +++ b/Marlin/M100_Free_Mem_Chk.cpp @@ -241,7 +241,7 @@ void gcode_M100() { SERIAL_ECHOPAIR("\n__brkval : ", hex_address(__brkval)); SERIAL_ECHOPAIR("\n__bss_end : ", hex_address(&__bss_end)); - uint8_t *ptr = END_OF_HEAP(), *sp = top_of_stack(); + char *ptr = END_OF_HEAP(), *sp = top_of_stack(); SERIAL_ECHOPAIR("\nstart of free space : ", hex_address(ptr)); SERIAL_ECHOLNPAIR("\nStack Pointer : ", hex_address(sp));