From: jca Date: Sat, 11 Nov 2023 18:47:02 +0000 (+0000) Subject: Fix variable name in comment X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=58689e6b0b5995de18bdddc69f544418dde3b8bd;p=openbsd 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.) --- 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)