Add missing terminating newlines to LWIP_DEBUGF statements
This commit is contained in:
committed by
Simon Goldschmidt
parent
c2f9244137
commit
f84076b112
@@ -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);
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user