From: Jouni Malinen Date: Sat, 4 Jun 2016 19:00:30 +0000 (+0300) Subject: mesh: Remove extra newline from the end of an error message X-Git-Tag: hostap_2_6~417 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ee854ff679aacecaa178ff7089d61084fcf2ceae;p=thirdparty%2Fhostap.git mesh: Remove extra newline from the end of an error message Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/mesh.c b/wpa_supplicant/mesh.c index 70716e9db..e9b645093 100644 --- a/wpa_supplicant/mesh.c +++ b/wpa_supplicant/mesh.c @@ -411,7 +411,7 @@ int wpa_supplicant_join_mesh(struct wpa_supplicant *wpa_s, wpa_ssid_txt(ssid->ssid, ssid->ssid_len)); ret = wpa_drv_join_mesh(wpa_s, ¶ms); if (ret) - wpa_msg(wpa_s, MSG_ERROR, "mesh join error=%d\n", ret); + wpa_msg(wpa_s, MSG_ERROR, "mesh join error=%d", ret); /* hostapd sets the interface down until we associate */ wpa_drv_set_operstate(wpa_s, 1);