summaryrefslogtreecommitdiff
path: root/ptw32_throw.c
diff options
context:
space:
mode:
Diffstat (limited to 'ptw32_throw.c')
-rw-r--r--ptw32_throw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ptw32_throw.c b/ptw32_throw.c
index 63f45f1..20068a7 100644
--- a/ptw32_throw.c
+++ b/ptw32_throw.c
@@ -73,7 +73,7 @@ ptw32_throw (DWORD exception)
* explicit thread exit here after cleaning up POSIX
* residue (i.e. cleanup handlers, POSIX thread handle etc).
*/
-#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__)
+#if ! (defined(__MINGW64__) || defined(__MINGW32__)) || defined (__MSVCRT__) || defined (__DMC__)
unsigned exitCode = 0;
switch (exception)
@@ -96,7 +96,7 @@ ptw32_throw (DWORD exception)
#endif
-#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__)
+#if ! (defined(__MINGW64__) || defined(__MINGW32__)) || defined (__MSVCRT__) || defined (__DMC__)
_endthreadex (exitCode);
#else
_endthread ();
@@ -166,7 +166,7 @@ ptw32_get_exception_services_code (void)
#else
- return (DWORD) NULL;
+ return (DWORD)0;
#endif
}