From 7b3767e67cc8d0f192634f81c97aa05ab8fd53e4 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Thu, 3 Jun 2021 08:50:39 -1000 Subject: [PATCH] Fixed oops in last commit --- Grbl_Esp32/src/Pin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grbl_Esp32/src/Pin.cpp b/Grbl_Esp32/src/Pin.cpp index ab85a524..111cb437 100644 --- a/Grbl_Esp32/src/Pin.cpp +++ b/Grbl_Esp32/src/Pin.cpp @@ -148,7 +148,7 @@ Pin Pin::create(const StringRange& str) { return Pin(pinImplementation); } catch (const AssertionFailed& ex) { // We shouldn't get here under normal circumstances. - pin_error("Setting up pin failed. Details: %s\r\n", ex.what().c_str()); + pin_error("Setting up pin failed. Details: %s\r\n", ex.what()); (void)ex; // Get rid of compiler warning return Pin(pinImplementation);