From 5f1cad9dac2aac2be2ec30a253b354765767582f Mon Sep 17 00:00:00 2001 From: Stefan de Bruijn Date: Mon, 26 Oct 2020 14:19:22 +0100 Subject: [PATCH] Fixed stupid bug --- 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 d56c2003..b11b6342 100644 --- a/Grbl_Esp32/src/Pin.cpp +++ b/Grbl_Esp32/src/Pin.cpp @@ -92,7 +92,7 @@ bool Pin::parse(String str, Pins::PinDetail*& pinImplementation) { pinImplementation = new Pins::VoidPinDetail(uint8_t(pinNumber)); } else { #ifdef ESP32 - grbl_sendf(CLIENT_ALL, "Unknown prefix: " % s "\r\n", prefix.c_str()); + grbl_sendf(CLIENT_ALL, "Unknown prefix: \"%s\"\r\n", prefix.c_str()); #endif return false; }