mirror of
https://github.com/reactos/reactos.git
synced 2026-06-04 10:20:48 +08:00
[NTOS] Do not force-align an integer value
This commit is contained in:
committed by
Jérôme Gardou
parent
d55276aad9
commit
662774bca3
@@ -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);
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user