Add semicolon

This commit is contained in:
Mike Schiraldi 2022-03-14 12:40:57 -07:00
parent 88d6850c82
commit fc0eb7de46

View File

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