git: c88f6908b40c - main - bpf: Correct a comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 20 Jun 2022 17:00:29 UTC
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))