[PATCH] tcp: fixed whitespace trailing error

From: Malkoot Khan
Date: Thu Dec 28 2023 - 11:44:17 EST


Corrected whitespaces trailing error

Signed-off-by: Malkoot Khan <engr.mkhan1990@xxxxxxxxx>
---
net/ipv4/tcp_timer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c
index 1f9f6c1c196b..b7d0f8aee7ff 100644
--- a/net/ipv4/tcp_timer.c
+++ b/net/ipv4/tcp_timer.c
@@ -542,7 +542,7 @@ void tcp_retransmit_timer(struct sock *sk)
struct inet_sock *inet = inet_sk(sk);
u32 rtx_delta;

- rtx_delta = tcp_time_stamp_ts(tp) - (tp->retrans_stamp ?:
+ rtx_delta = tcp_time_stamp_ts(tp) - (tp->retrans_stamp ? :
tcp_skb_timestamp_ts(tp->tcp_usec_ts, skb));
if (tp->tcp_usec_ts)
rtx_delta /= USEC_PER_MSEC;
--
2.34.1