From e8d652165c6ffd9e38661936f48246de8d7f2745 Mon Sep 17 00:00:00 2001 From: chli Date: Thu, 1 Dec 2022 08:36:10 +0000 Subject: [PATCH] wpa_supplicant: remove stray \n when logging "wifi_wps_enable" Closes https://github.com/espressif/esp-idf/pull/10285 Signed-off-by: gauri patankar --- components/wpa_supplicant/esp_supplicant/src/esp_wps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wpa_supplicant/esp_supplicant/src/esp_wps.c b/components/wpa_supplicant/esp_supplicant/src/esp_wps.c index 6dee85c7c0..485ad9f963 100644 --- a/components/wpa_supplicant/esp_supplicant/src/esp_wps.c +++ b/components/wpa_supplicant/esp_supplicant/src/esp_wps.c @@ -1841,7 +1841,7 @@ int wifi_wps_enable_internal(const esp_wps_config_t *config) return ret; } - wpa_printf(MSG_INFO, "wifi_wps_enable\n"); + wpa_printf(MSG_INFO, "wifi_wps_enable"); wps_set_type(config->wps_type); wps_set_status(WPS_STATUS_DISABLE);