1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-31 10:01:48 +02:00

Fixed oops in last commit

This commit is contained in:
Mitch Bradley
2021-06-03 08:50:39 -10:00
parent a09825c888
commit 7b3767e67c

View File

@@ -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);