diff --git a/src/core/tcp.c b/src/core/tcp.c index 3f4ce641..28d7b9f4 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -858,7 +858,7 @@ tcp_kill_prio(u8_t prio) } } if (inactive != NULL) { - LWIP_DEBUGF(TCP_DEBUG, ("tcp_kill_prio: killing oldest PCB 0x%p (%ld)\n", + LWIP_DEBUGF(TCP_DEBUG, ("tcp_kill_prio: killing oldest PCB %p (%ld)\n", (void *)inactive, inactivity)); tcp_abort(inactive); } @@ -880,7 +880,7 @@ tcp_kill_timewait(void) } } if (inactive != NULL) { - LWIP_DEBUGF(TCP_DEBUG, ("tcp_kill_timewait: killing oldest TIME-WAIT PCB 0x%p (%ld)\n", + LWIP_DEBUGF(TCP_DEBUG, ("tcp_kill_timewait: killing oldest TIME-WAIT PCB %p (%ld)\n", (void *)inactive, inactivity)); tcp_abort(inactive); }