mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
gthread: Fix incorrect cast
This commit is contained in:
parent
01b77666bc
commit
d45d9f738c
@ -580,7 +580,8 @@ SetThreadName (DWORD dwThreadID,
|
||||
#ifdef _MSC_VER
|
||||
__try
|
||||
{
|
||||
RaiseException (EXCEPTION_SET_THREAD_NAME, 0, infosize, (DWORD *) &info);
|
||||
RaiseException (EXCEPTION_SET_THREAD_NAME, 0, infosize,
|
||||
(const ULONG_PTR *) &info);
|
||||
}
|
||||
__except (EXCEPTION_EXECUTE_HANDLER)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user