mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[SDK:INCLUDE] Cast to type instead of PVOID
For C++ header compatibility
This commit is contained in:
parent
fa74ae571b
commit
8f963c38c6
1 changed files with 2 additions and 2 deletions
|
@ -40,8 +40,8 @@ CmiGetNextPartialDescriptor(
|
|||
if (PartialDescriptor->Type == CmResourceTypeDeviceSpecific)
|
||||
{
|
||||
/* Add the size of the variable section as well */
|
||||
NextDescriptor = (PVOID)((ULONG_PTR)NextDescriptor +
|
||||
PartialDescriptor->u.DeviceSpecificData.DataSize);
|
||||
NextDescriptor = (PCM_PARTIAL_RESOURCE_DESCRIPTOR)((ULONG_PTR)NextDescriptor +
|
||||
PartialDescriptor->u.DeviceSpecificData.DataSize);
|
||||
ASSERT(NextDescriptor >= PartialDescriptor + 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue