mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +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);
|
||||
|
||||
/* Setup the IRP work entry */
|
||||
CompBattMonitorIrpComplete(BatteryData->DeviceObject, Irp, 0);
|
||||
CompBattMonitorIrpComplete(BatteryData->DeviceObject, Irp, NULL);
|
||||
Status = STATUS_SUCCESS;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue