From 2f7d32797830f85c5d9234ece7a7d9bb6d19f057 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Tue, 12 Jun 2018 18:50:59 +0800 Subject: [PATCH] panic: remove extra newline --- components/esp32/panic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp32/panic.c b/components/esp32/panic.c index ab57307270..8edb70b233 100644 --- a/components/esp32/panic.c +++ b/components/esp32/panic.c @@ -313,7 +313,7 @@ void xt_unhandled_exception(XtExcFrame *frame) } else { panicPutStr("Unknown"); } - panicPutStr(")\r\n"); + panicPutStr(")"); if (esp_cpu_in_ocd_debug_mode()) { panicPutStr(" at pc="); panicPutHex(frame->pc);