mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:46:17 +00:00
Fix a broken cast (thanks w3seek)
svn path=/trunk/; revision=21827
This commit is contained in:
parent
cc1a16be75
commit
33a839df3b
1 changed files with 1 additions and 1 deletions
|
@ -2134,7 +2134,7 @@ BOOL WINAPI SetupDiGetClassImageListExW(
|
|||
list->MachineName = NULL;
|
||||
}
|
||||
|
||||
ClassImageListData->Reserved = (DWORD)list; /* FIXME: 64 bit portability issue */
|
||||
ClassImageListData->Reserved = (ULONG_PTR)list;
|
||||
ret = TRUE;
|
||||
|
||||
cleanup:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue