diff options
author | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2023-11-11 18:47:03 +0000 |
---|---|---|
committer | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2023-11-11 18:47:03 +0000 |
commit | 941ffe555dddd387cee18147801f475fdd6d252f (patch) | |
tree | a31c2db3fbb633984e68b3fb7a22538d302f75d6 /sys | |
parent | 86f827283380f32a166a6a68a6ebed4675a6e7ca (diff) |
Fix variable name in comment
Mostly a dummy commit so that the last llvm commit ends up in the git export.
(No idea whether it's actually/still needed but it can't hurt.)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/include/atomic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/atomic.h b/sys/arch/amd64/include/atomic.h index 58a85cf5921..ffc57677913 100644 --- a/sys/arch/amd64/include/atomic.h +++ b/sys/arch/amd64/include/atomic.h @@ -1,4 +1,4 @@ -/* $OpenBSD: atomic.h,v 1.22 2022/08/29 02:01:18 jsg Exp $ */ +/* $OpenBSD: atomic.h,v 1.23 2023/11/11 18:47:02 jca Exp $ */ /* $NetBSD: atomic.h,v 1.1 2003/04/26 18:39:37 fvdl Exp $ */ /* @@ -44,7 +44,7 @@ * to interrupts and multiple processors. * * void atomic_setbits_int(volatile u_int *a, u_int mask) { *a |= mask; } - * void atomic_clearbits_int(volatile u_int *a, u_int mas) { *a &= ~mask; } + * void atomic_clearbits_int(volatile u_int *a, u_int mask) { *a &= ~mask; } */ #if !defined(_LOCORE) |