net/tcp/tcp_input.c: Fix syslog formats

This commit is contained in:
YAMAMOTO Takashi 2020-11-23 20:43:52 +09:00 committed by Xiang Xiao
parent bfff9e5691
commit ee1c914277

View File

@ -47,6 +47,7 @@
#if defined(CONFIG_NET) && defined(CONFIG_NET_TCP)
#include <inttypes.h>
#include <stdint.h>
#include <string.h>
#include <assert.h>
@ -508,7 +509,8 @@ found:
if ((conn->tcpstateflags & TCP_STATE_MASK) == TCP_ESTABLISHED)
{
nwarn("WARNING: ackseq > unackseq\n");
nwarn("sndseq=%u tx_unacked=%u unackseq=%u ackseq=%u\n",
nwarn("sndseq=%" PRIu32 " tx_unacked=%u "
"unackseq=%" PRIu32 " ackseq=%" PRIu32 "\n",
tcp_getsequence(conn->sndseq), conn->tx_unacked,
unackseq, ackseq);
@ -521,8 +523,10 @@ found:
* be beyond ackseq.
*/
ninfo("sndseq: %08x->%08x unackseq: %08x new tx_unacked: %d\n",
tcp_getsequence(conn->sndseq), ackseq, unackseq, conn->tx_unacked);
ninfo("sndseq: %08" PRIx32 "->%08" PRIx32
" unackseq: %08" PRIx32 " new tx_unacked: %d\n",
tcp_getsequence(conn->sndseq), ackseq, unackseq,
conn->tx_unacked);
tcp_setsequence(conn->sndseq, ackseq);
/* Do RTT estimation, unless we have done retransmissions. */