Date: Mon, 27 Jun 2022 14:11:37 GMT From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 2cecf3cfbb09 - stable/13 - bpf: Correct a comment Message-ID: <202206271411.25REBbCf079159@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=2cecf3cfbb09b7d02c2688bc272a413c89b0c443 commit 2cecf3cfbb09b7d02c2688bc272a413c89b0c443 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2022-06-20 16:02:59 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2022-06-27 14:11:20 +0000 bpf: Correct a comment Sponsored by: The FreeBSD Foundation (cherry picked from commit c88f6908b40ce1bc0450db71f7fde141951d4c44) --- sys/net/bpf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/net/bpf.h b/sys/net/bpf.h index b7cd8036856c..e5b8898188f1 100644 --- a/sys/net/bpf.h +++ b/sys/net/bpf.h @@ -55,8 +55,8 @@ typedef int64_t bpf_int64; typedef u_int64_t bpf_u_int64; /* - * Alignment macros. BPF_WORDALIGN rounds up to the next - * even multiple of BPF_ALIGNMENT. + * Alignment macros. BPF_WORDALIGN rounds up to the next multiple of + * BPF_ALIGNMENT. */ #define BPF_ALIGNMENT sizeof(long) #define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202206271411.25REBbCf079159>