Xin Xu : include: Fix spelling error in InterlockedDecrementSizeT().
Module: wine Branch: master Commit: d291f40472923cfe614589a53b9eb5a9345292a8 URL: https://gitlab.winehq.org/wine/wine/-/commit/d291f40472923cfe614589a53b9eb5a... Author: Xin Xu <xxsemail(a)qq.com> Date: Wed Jun 28 19:56:00 2023 +0800 include: Fix spelling error in InterlockedDecrementSizeT(). --- include/winnt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/winnt.h b/include/winnt.h index c0967ac4459..8d803eaceb1 100644 --- a/include/winnt.h +++ b/include/winnt.h @@ -7184,13 +7184,13 @@ static FORCEINLINE unsigned char InterlockedCompareExchange128( volatile __int64 #endif -#define InterlockedDecrementSizeT(a) InterlockeDecrement64((LONGLONG *)(a)) +#define InterlockedDecrementSizeT(a) InterlockedDecrement64((LONGLONG *)(a)) #define InterlockedExchangeAddSizeT(a, b) InterlockedExchangeAdd64((LONGLONG *)(a), (b)) #define InterlockedIncrementSizeT(a) InterlockedIncrement64((LONGLONG *)(a)) #else /* _WIN64 */ -#define InterlockedDecrementSizeT(a) InterlockeDecrement((LONG *)(a)) +#define InterlockedDecrementSizeT(a) InterlockedDecrement((LONG *)(a)) #define InterlockedExchangeAddSizeT(a, b) InterlockedExchangeAdd((LONG *)(a), (b)) #define InterlockedIncrementSizeT(a) InterlockedIncrement((LONG *)(a))
participants (1)
-
Alexandre Julliard