git: a2e4f45480c2 - main - tcp: whitespace cleanup
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 30 Sep 2024 17:56:08 UTC
The branch main has been updated by tuexen: URL: https://cgit.FreeBSD.org/src/commit/?id=a2e4f45480c248036b002904ddbceef20ba7c523 commit a2e4f45480c248036b002904ddbceef20ba7c523 Author: Michael Tuexen <tuexen@FreeBSD.org> AuthorDate: 2024-09-30 17:53:57 +0000 Commit: Michael Tuexen <tuexen@FreeBSD.org> CommitDate: 2024-09-30 17:53:57 +0000 tcp: whitespace cleanup No functional change intended. Reported by: markj MFC after: 1 week Sponsored by: Netflix, Inc. --- 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 19145446988e..04a964cf40cc 100644 --- a/sys/netinet/tcp_syncache.c +++ b/sys/netinet/tcp_syncache.c @@ -229,7 +229,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 @@ -1520,7 +1520,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; } /* @@ -1605,7 +1605,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; } }