diff options
author | Chris Robinson <[email protected]> | 2013-10-28 12:12:26 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-28 12:12:26 -0700 |
commit | 0617df9b5f6dd2b01d248edd0b4ad989d1c343f8 (patch) | |
tree | 805caca7623dc5f7dc3a3d20bac2db412e606d56 /Alc/threads.c | |
parent | f24cb447818ea21ff5a5d80d6396abb4723fd2ed (diff) |
Fix a couple casts
Diffstat (limited to 'Alc/threads.c')
-rw-r--r-- | Alc/threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/threads.c b/Alc/threads.c index 1c422949..64586ae9 100644 --- a/Alc/threads.c +++ b/Alc/threads.c @@ -105,7 +105,7 @@ void SetThreadName(const char *name) info.dwFlags = 0; __try { - RaiseException(MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(DWORD), (DWORD*)&info); + RaiseException(MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(DWORD), (ULONG_PTR*)&info); } __except(EXCEPTION_CONTINUE_EXECUTION) { } |