diff --git a/temp.c b/temp.c index 517e6d1..7e818c7 100644 --- a/temp.c +++ b/temp.c @@ -191,7 +191,7 @@ void temp_print() { c = (current_temp & 3) * 25; t = (target_temp & 3) * 25; #ifdef REPRAP_HOST_COMPATIBILITY - sersendf_P(PSTR("T: %u.%u\n"), current_temp >> 2, c); + sersendf_P(PSTR(" T: %u.%u\n"), current_temp >> 2, c); #else sersendf_P(PSTR("T: %u.%u/%u.%u :%u\n"), current_temp >> 2, c, target_temp >> 2, t, temp_residency); #endif