git: 5414cef63485 - stable/13 - tcp: whitespace cleanup

From: Michael Tuexen <tuexen_at_FreeBSD.org>
Date: Thu, 31 Oct 2024 16:56:40 UTC
The branch stable/13 has been updated by tuexen:

URL: https://cgit.FreeBSD.org/src/commit/?id=5414cef63485efd305466233e317facb33665287

commit 5414cef63485efd305466233e317facb33665287
Author:     Michael Tuexen <tuexen@FreeBSD.org>
AuthorDate: 2024-09-30 17:53:57 +0000
Commit:     Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2024-10-31 16:55:56 +0000

    tcp: whitespace cleanup
    
    No functional change intended.
    
    Reported by:    markj
    Sponsored by:   Netflix, Inc.
    
    (cherry picked from commit a2e4f45480c248036b002904ddbceef20ba7c523)
---
 sys/netinet/tcp_syncache.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys/netinet/tcp_syncache.c b/sys/netinet/tcp_syncache.c
index d4e21edc1713..4544788e8318 100644
--- a/sys/netinet/tcp_syncache.c
+++ b/sys/netinet/tcp_syncache.c
@@ -233,7 +233,7 @@ syncache_free(struct syncache *sc)
 {
 
 	if (sc->sc_ipopts)
-		(void) m_free(sc->sc_ipopts);
+		(void)m_free(sc->sc_ipopts);
 	if (sc->sc_cred)
 		crfree(sc->sc_cred);
 #ifdef MAC
@@ -1563,7 +1563,7 @@ syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
 			 * forget it and use the new one we've been given.
 			 */
 			if (sc->sc_ipopts)
-				(void) m_free(sc->sc_ipopts);
+				(void)m_free(sc->sc_ipopts);
 			sc->sc_ipopts = ipopts;
 		}
 		/*
@@ -1647,7 +1647,7 @@ syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
 				    __func__));
 				SCH_UNLOCK(sch);
 				if (ipopts)
-					(void) m_free(ipopts);
+					(void)m_free(ipopts);
 				goto done;
 			}
 		}