Add missing terminating newlines to LWIP_DEBUGF statements

This commit is contained in:
Shawn Silverman
2023-04-09 10:29:10 -07:00
committed by Simon Goldschmidt
parent c2f9244137
commit f84076b112
20 changed files with 44 additions and 39 deletions

View File

@@ -87,7 +87,7 @@ http_server_netconn_thread(void *arg)
}
} while(err == ERR_OK);
LWIP_DEBUGF(HTTPD_DEBUG,
("http_server_netconn_thread: netconn_accept received error %d, shutting down",
("http_server_netconn_thread: netconn_accept received error %d, shutting down\n",
err));
netconn_close(conn);
netconn_delete(conn);

View File

@@ -215,7 +215,7 @@ sys_thread_new(const char *name, lwip_thread_fn function, void *arg, int stacksi
}
if (NULL == st) {
LWIP_DEBUGF(SYS_DEBUG, ("sys_thread_new: pthread_create %d, st = 0x%lx",
LWIP_DEBUGF(SYS_DEBUG, ("sys_thread_new: pthread_create %d, st = 0x%lx\n",
code, (unsigned long)st));
abort();
}