From 5be1a224d35991ac491e3da851e42c5965fbc5d7 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Fri, 12 Dec 2025 18:10:34 +1100 Subject: tcp: Remove extra space from TCP_INFO debug messages (trivial) Debug messages about which tcp_info fields are supported contained an extra space, always ending with " supported". Signed-off-by: David Gibson Signed-off-by: Stefano Brivio --- tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcp.c b/tcp.c index 1711bcc..81bc114 100644 --- a/tcp.c +++ b/tcp.c @@ -2950,7 +2950,7 @@ int tcp_init(struct ctx *c) tcp_info_size = tcp_probe_tcp_info(); #define dbg_tcpi(f_) debug("TCP_INFO tcpi_%s field%s supported", \ - STRINGIFY(f_), tcp_info_cap(f_) ? " " : " not ") + STRINGIFY(f_), tcp_info_cap(f_) ? "" : " not") dbg_tcpi(snd_wnd); dbg_tcpi(bytes_acked); dbg_tcpi(min_rtt); -- cgit v1.2.3