Minor changes in lwip folder: fix some warnings, coding style, and rename "internal" netconn_alloc function.

This commit is contained in:
fbernon
2008-01-04 23:07:44 +00:00
parent 32005617b9
commit 9c4daa312d
8 changed files with 18 additions and 12 deletions

View File

@@ -71,7 +71,7 @@ netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto,
struct netconn *conn;
struct api_msg msg;
conn = netconn_alloc_with_proto_and_callback(t, proto, callback);
conn = netconn_alloc(t, callback);
if (conn != NULL ) {
msg.function = do_newconn;
msg.msg.msg.n.proto = proto;