Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jun 2022 17:00:29 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: c88f6908b40c - main - bpf: Correct a comment
Message-ID:  <202206201700.25KH0T0V049771@gitrepo.freebsd.org>

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

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

commit c88f6908b40ce1bc0450db71f7fde141951d4c44
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-06-20 16:02:59 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-06-20 16:48:13 +0000

    bpf: Correct a comment
    
    MFC after:      1 week
    Sponsored by:   The FreeBSD Foundation
---
 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?202206201700.25KH0T0V049771>