From fc0eb7de466a39e5f58b44d64176b9c9b7d1d354 Mon Sep 17 00:00:00 2001 From: Mike Schiraldi Date: Mon, 14 Mar 2022 12:40:57 -0700 Subject: [PATCH] Add semicolon --- src/mesh/http/WiFiAPClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/http/WiFiAPClient.cpp b/src/mesh/http/WiFiAPClient.cpp index 1a858d4b2..afda19702 100644 --- a/src/mesh/http/WiFiAPClient.cpp +++ b/src/mesh/http/WiFiAPClient.cpp @@ -209,7 +209,7 @@ bool initWifi(bool forceSoftAP) DEBUG_MSG("Starting (Forced) WIFI AP: ssid=%s, ok=%d\n", softAPssid, ok); } else { - int ok = WiFi.softAP(wifiName, wifiPsw) + int ok = WiFi.softAP(wifiName, wifiPsw); DEBUG_MSG("Starting WIFI AP: ssid=%s, ok=%d\n", wifiName, ok); }