git: 2cecf3cfbb09 - stable/13 - bpf: Correct a comment

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Mon, 27 Jun 2022 14:11:37 UTC
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))