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);