Fixed many LWIP_DEBUGF format strings; added new format string SZT_F for size_t

This commit is contained in:
goldsimon
2009-02-18 21:13:06 +00:00
parent 103fe60362
commit c05e968278
4 changed files with 40 additions and 32 deletions

View File

@@ -439,7 +439,7 @@ netconn_send(struct netconn *conn, struct netbuf *buf)
LWIP_ERROR("netconn_send: invalid conn", (conn != NULL), return ERR_ARG;);
LWIP_DEBUGF(API_LIB_DEBUG, ("netconn_send: sending %d bytes\n", buf->p->tot_len));
LWIP_DEBUGF(API_LIB_DEBUG, ("netconn_send: sending %"U16_F" bytes\n", buf->p->tot_len));
msg.function = do_send;
msg.msg.conn = conn;
msg.msg.msg.b = buf;