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
path: root/winsup
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
parent2d54484a72f5c0734b9c6c7f03741113d377f21a (diff)
* winbase.h: Add missing closing parentheses to InterlockedExchangePointer
declaration.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/w32api/ChangeLog5
-rw-r--r--winsup/w32api/include/winbase.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index de11d4b02..98768fba4 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,3 +1,8 @@
+Tue Sep 4 14:15:59 2001 Christopher Faylor <cgf@cygnus.com>
+
+ * winbase.h: Add missing closing parentheses to
+ InterlockedExchangePointer declaration.
+
2001-09-01 Danny Smith <dannysmith@users.sourceforge.net>
* include/shlobj.h (CFSTR_* ): Add new defines.
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);