From 80b344e9fc8518b246769635146b5dcad1adbf52 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Thu, 21 Apr 2011 05:15:45 +0000 Subject: [PATCH] Fixed printf-format error (bug #33079) --- src/api/sockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/sockets.c b/src/api/sockets.c index bfef2d96..e36012ce 100644 --- a/src/api/sockets.c +++ b/src/api/sockets.c @@ -894,7 +894,7 @@ lwip_sendto(int s, const void *data, size_t size, int flags, netbuf_fromport(&buf) = 0; } - LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_sendto(%d, data=%p, short_size=%d"U16_F", flags=0x%x to=", + LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_sendto(%d, data=%p, short_size=%"U16_F", flags=0x%x to=", s, data, short_size, flags)); ip_addr_debug_print(SOCKETS_DEBUG, &buf.addr); LWIP_DEBUGF(SOCKETS_DEBUG, (" port=%"U16_F"\n", remote_port));