mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 19:19:00 +00:00
[COMPBATT] Pass NULL for the work item context, not 0
It expects an arbitrary pointer, do the right thing!
This commit is contained in:
parent
8b5423aa60
commit
3346301777
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ CompBattAddNewBattery(
|
||||||
BatteryData);
|
BatteryData);
|
||||||
|
|
||||||
/* Setup the IRP work entry */
|
/* Setup the IRP work entry */
|
||||||
CompBattMonitorIrpComplete(BatteryData->DeviceObject, Irp, 0);
|
CompBattMonitorIrpComplete(BatteryData->DeviceObject, Irp, NULL);
|
||||||
Status = STATUS_SUCCESS;
|
Status = STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue