esp32: remove extra initial newline on syslog call

This commit is contained in:
Matias N 2021-03-30 10:16:18 -03:00 committed by Abdelatif Guettouche
parent c172ced3ba
commit a5a435e98f

View File

@ -5360,7 +5360,7 @@ int esp_wifi_sta_essid(struct iwreq *iwr, bool set)
#ifdef CONFIG_DEBUG_WIRELESS_INFO
memcpy(buf, pdata, len);
buf[len] = 0;
wlinfo("\nINFO: WiFi station ssid=%s len=%d\n", buf, len);
wlinfo("WiFi station ssid=%s len=%d\n", buf, len);
#endif
return OK;