Browse Source

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 <j@w1.fi>
Jouni Malinen 10 years ago
parent
commit
74879f320d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/ieee802_11_common.c

+ 1 - 1
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;
 		}