[NTOS] Do not force-align an integer value

This commit is contained in:
Jérôme Gardou 2021-04-12 14:17:14 +02:00 committed by Jérôme Gardou
parent d55276aad9
commit 662774bca3
2 changed files with 3 additions and 3 deletions

View file

@ -1389,7 +1389,7 @@ PiIrpQueryDeviceRelations(
NTSTATUS
PiIrpQueryDeviceText(
_In_ PDEVICE_NODE DeviceNode,
_In_ LCID POINTER_ALIGNMENT LocaleId,
_In_ LCID LocaleId,
_In_ DEVICE_TEXT_TYPE Type,
_Out_ PWSTR *DeviceText);

View file

@ -200,7 +200,7 @@ PiIrpQueryDeviceRelations(
NTSTATUS
PiIrpQueryDeviceText(
_In_ PDEVICE_NODE DeviceNode,
_In_ LCID POINTER_ALIGNMENT LocaleId,
_In_ LCID LocaleId,
_In_ DEVICE_TEXT_TYPE Type,
_Out_ PWSTR *DeviceText)
{
@ -236,7 +236,7 @@ PiIrpQueryPnPDeviceState(
PAGED_CODE();
ASSERT(DeviceNode);
ASSERT(DeviceNode->State == DeviceNodeStartPostWork ||
ASSERT(DeviceNode->State == DeviceNodeStartPostWork ||
DeviceNode->State == DeviceNodeStarted);
ULONG_PTR longState;