https://git.reactos.org/?p=reactos.git;a=commitdiff;h=df81dadd9ce0940a33e425aa3d7f8375df926917
commit df81dadd9ce0940a33e425aa3d7f8375df926917 Author: Serge Gautherie <32623169+sergegauthe...@users.noreply.github.com> AuthorDate: Sat Dec 23 21:50:47 2023 +0100 Commit: GitHub <nore...@github.com> CommitDate: Sat Dec 23 21:50:47 2023 +0100 [UMPNPMGR] PNP_RegisterNotification(): Fix a string format (#6211) Type was changed from DWORD to DWORD_PTR (as handle). Addendum to commit 71df39b02 --- base/services/umpnpmgr/rpcserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/services/umpnpmgr/rpcserver.c b/base/services/umpnpmgr/rpcserver.c index f493f181d5e..a8385d5221b 100644 --- a/base/services/umpnpmgr/rpcserver.c +++ b/base/services/umpnpmgr/rpcserver.c @@ -4702,7 +4702,7 @@ PNP_RegisterNotification( PDEV_BROADCAST_HANDLE pBroadcastDeviceHandle; PNOTIFY_ENTRY pNotifyData = NULL; - DPRINT1("PNP_RegisterNotification(%p %lx '%S' %p %lu 0x%lx %p %lx %p)\n", + DPRINT1("PNP_RegisterNotification(%p %p '%S' %p %lu 0x%lx %p %lx %p)\n", hBinding, hRecipient, pszName, pNotificationFilter, ulNotificationFilterSize, ulFlags, pNotifyHandle, ulProcessId, pulUnknown9);