]> sourceware.org Git - newlib-cygwin.git/commitdiff
* winbase.h: Add missing closing parentheses to InterlockedExchangePointer
authorChristopher Faylor <me@cgf.cx>
Tue, 4 Sep 2001 18:19:33 +0000 (18:19 +0000)
committerChristopher Faylor <me@cgf.cx>
Tue, 4 Sep 2001 18:19:33 +0000 (18:19 +0000)
declaration.

winsup/w32api/ChangeLog
winsup/w32api/include/winbase.h

index de11d4b02cb7675c59f261db99437a17c0840ef5..98768fba4dd1fccde4f894b93a13131dd9fcae69 100644 (file)
@@ -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.
index 86917e5f02d355c809a9f8286dd40400b400b9cb..2892fd5facf112a95a111878199088c6a8c6b1d0 100644 (file)
@@ -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);
This page took 0.208666 seconds and 5 git commands to generate.