mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NTOS:WMI] IoWMIWriteEvent(): Fix annotation, Extend DPRINT1()
CORE-17384
This commit is contained in:
parent
4b4bff0642
commit
495e22e0d5
1 changed files with 3 additions and 3 deletions
|
@ -106,10 +106,10 @@ IoWMISuggestInstanceName(IN PDEVICE_OBJECT PhysicalDeviceObject OPTIONAL,
|
||||||
*/
|
*/
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
IoWMIWriteEvent(IN PVOID WnodeEventItem)
|
IoWMIWriteEvent(_Inout_ PVOID WnodeEventItem)
|
||||||
{
|
{
|
||||||
DPRINT1("IoWMIWriteEvent() called for WnodeEventItem %p, returning success\n",
|
DPRINT1("IoWMIWriteEvent() called for WnodeEventItem %p (Flags = 0x%08lx), returning success\n",
|
||||||
WnodeEventItem);
|
WnodeEventItem, ((PWNODE_HEADER)WnodeEventItem)->Flags);
|
||||||
|
|
||||||
/* Free the buffer if we are returning success */
|
/* Free the buffer if we are returning success */
|
||||||
if (WnodeEventItem != NULL)
|
if (WnodeEventItem != NULL)
|
||||||
|
|
Loading…
Reference in a new issue