From: Jouni Malinen Date: Tue, 27 May 2014 20:39:46 +0000 (+0300) Subject: Remove extra newline from a debug print X-Git-Tag: hostap_2_2~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74879f320deb18c782768dd3033aedc7e845be6d;p=thirdparty%2Fhostap.git Remove extra newline from a debug print "Unknown WFA information element ignored" debug message had an extra newline at the end. Signed-off-by: Jouni Malinen --- diff --git a/src/common/ieee802_11_common.c b/src/common/ieee802_11_common.c index cdee6bc3a..faa6a39ba 100644 --- a/src/common/ieee802_11_common.c +++ b/src/common/ieee802_11_common.c @@ -116,7 +116,7 @@ static int ieee802_11_parse_vendor_specific(const u8 *pos, size_t elen, default: wpa_printf(MSG_MSGDUMP, "Unknown WFA " "information element ignored " - "(type=%d len=%lu)\n", + "(type=%d len=%lu)", pos[3], (unsigned long) elen); return -1; }