From af6719965f450ab8177a8c3f4e4cf0ee9fef7dce Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 25 Nov 2020 19:45:45 +0900 Subject: [PATCH] net/tcp/tcp_appsend.c: Fix syslog formats --- net/tcp/tcp_appsend.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net/tcp/tcp_appsend.c b/net/tcp/tcp_appsend.c index f61da7e12f..fb05f75d63 100644 --- a/net/tcp/tcp_appsend.c +++ b/net/tcp/tcp_appsend.c @@ -44,6 +44,7 @@ #include #if defined(CONFIG_NET) && defined(CONFIG_NET_TCP) +#include #include #include #include @@ -85,7 +86,7 @@ void tcp_appsend(FAR struct net_driver_s *dev, FAR struct tcp_conn_s *conn, { uint8_t hdrlen; - ninfo("result: %04x d_sndlen: %d conn->tx_unacked: %d\n", + ninfo("result: %04x d_sndlen: %d conn->tx_unacked: %" PRId32 "\n", result, dev->d_sndlen, conn->tx_unacked); #ifdef CONFIG_NET_TCP_DELAYED_ACK @@ -271,7 +272,7 @@ void tcp_rexmit(FAR struct net_driver_s *dev, FAR struct tcp_conn_s *conn, { uint8_t hdrlen; - ninfo("result: %04x d_sndlen: %d conn->tx_unacked: %d\n", + ninfo("result: %04x d_sndlen: %d conn->tx_unacked: %" PRId32 "\n", result, dev->d_sndlen, conn->tx_unacked); /* Get the IP header length associated with the IP domain configured for