diff options
author | Christopher Faylor <me@cgf.cx> | 2001-09-04 18:19:33 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-09-04 18:19:33 +0000 |
commit | fb7369b5159e73fce10a0cc52c1c3b6dfba5f07d (patch) | |
tree | 58beaed0c85f8ee4c1ffc2e54c1cfa0ef34cba3e | |
parent | 2d54484a72f5c0734b9c6c7f03741113d377f21a (diff) | |
download | cygnal-fb7369b5159e73fce10a0cc52c1c3b6dfba5f07d.tar.gz cygnal-fb7369b5159e73fce10a0cc52c1c3b6dfba5f07d.tar.bz2 cygnal-fb7369b5159e73fce10a0cc52c1c3b6dfba5f07d.zip |
* winbase.h: Add missing closing parentheses to InterlockedExchangePointer
declaration.
-rw-r--r-- | winsup/w32api/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/w32api/include/winbase.h | 2 |
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); |