From ccd699fea63e6f149f2263e1f7e5fbc2dde7255b Mon Sep 17 00:00:00 2001 From: Luc <8822552+luc-github@users.noreply.github.com> Date: Mon, 8 Feb 2021 08:50:17 +0100 Subject: [PATCH] Update syncwebserver.cpp Fix typo --- esp3d/syncwebserver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp3d/syncwebserver.cpp b/esp3d/syncwebserver.cpp index a0fa36b1..c4f41848 100644 --- a/esp3d/syncwebserver.cpp +++ b/esp3d/syncwebserver.cpp @@ -76,7 +76,7 @@ WebSocketsServer * socket_server; #define ESP_ERROR_START_UPLOAD 12 -void pushError(int code, const char * st, bool web_error = 500, uint16_t timeout = 1000){ +void pushError(int code, const char * st, uint16_t web_error = 500, uint16_t timeout = 1000){ if (socket_server && st) { String s = "ERROR:" + String(code) + ":"; s+=st;