mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[NTOS] Do not force-align an integer value
This commit is contained in:
parent
d55276aad9
commit
662774bca3
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue