wpa_supplicant:Remove stray \n in supplicant logging

This commit is contained in:
gauri patankar
2022-12-06 00:14:22 +05:30
parent e8d652165c
commit 9a1e4e3b7b
17 changed files with 147 additions and 147 deletions

View File

@@ -54,7 +54,7 @@ int wpa_snprintf_hex(char *buf, size_t buf_size, const u8 *data, size_t len)
void wpa_dump_mem(char* desc, uint8_t *addr, uint16_t len)
{
char output[50];
wpa_printf(MSG_DEBUG, "%s\n", desc);
wpa_printf(MSG_DEBUG, "%s", desc);
if (addr){
uint16_t i=0;
for (i = 0; i < len / 16; i++) {