Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Aug 2022 19:09:12 GMT
From:      Mateusz Guzik <mjg@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2c1ac3d4d48a - main - nat64: fix whitespace damage in callout calls
Message-ID:  <202208271909.27RJ9CZI090032@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mjg:

URL: https://cgit.FreeBSD.org/src/commit/?id=2c1ac3d4d48a2b29e9c3cb2380e61a9e5f43d2f9

commit 2c1ac3d4d48a2b29e9c3cb2380e61a9e5f43d2f9
Author:     Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2022-08-27 19:06:41 +0000
Commit:     Mateusz Guzik <mjg@FreeBSD.org>
CommitDate: 2022-08-27 19:06:41 +0000

    nat64: fix whitespace damage in callout calls
    
    No functional changes.
---
 sys/netpfil/ipfw/nat64/nat64lsn.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/netpfil/ipfw/nat64/nat64lsn.c b/sys/netpfil/ipfw/nat64/nat64lsn.c
index 9616ecb29a0b..a50801a9c274 100644
--- a/sys/netpfil/ipfw/nat64/nat64lsn.c
+++ b/sys/netpfil/ipfw/nat64/nat64lsn.c
@@ -1712,8 +1712,8 @@ nat64lsn_init_instance(struct ip_fw_chain *ch, in_addr_t prefix, int plen)
 		ALIAS_LOCK_INIT(alias);
 	}
 
-        callout_init_mtx(&cfg->periodic, &cfg->periodic_lock, 0);
-        callout_init(&cfg->jcallout, CALLOUT_MPSAFE);
+	callout_init_mtx(&cfg->periodic, &cfg->periodic_lock, 0);
+	callout_init(&cfg->jcallout, CALLOUT_MPSAFE);
 
 	return (cfg);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202208271909.27RJ9CZI090032>