Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-09-04 22:19:33 +0400
committerChristopher Faylor <me@cgf.cx>2001-09-04 22:19:33 +0400
commitfb7369b5159e73fce10a0cc52c1c3b6dfba5f07d (patch)
tree58beaed0c85f8ee4c1ffc2e54c1cfa0ef34cba3e /winsup/w32api/include/winbase.h
parent2d54484a72f5c0734b9c6c7f03741113d377f21a (diff)
* winbase.h: Add missing closing parentheses to InterlockedExchangePointer
declaration.
Diffstat (limited to 'winsup/w32api/include/winbase.h')
-rw-r--r--winsup/w32api/include/winbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/w32api/include/winbase.h b/winsup/w32api/include/winbase.h
index 86917e5f0..2892fd5fa 100644
--- a/winsup/w32api/include/winbase.h
+++ b/winsup/w32api/include/winbase.h
@@ -1319,7 +1319,7 @@ LONG WINAPI InterlockedDecrement(LPLONG);
LONG WINAPI InterlockedExchange(LPLONG,LONG);
/* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */
#define InterlockedExchangePointer(t,v) \
- (PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v)
+ (PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v))
LONG WINAPI InterlockedExchangeAdd(PLONG,LONG);
LONG WINAPI InterlockedIncrement(LPLONG);
BOOL WINAPI IsBadCodePtr(FARPROC);