https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2712762538e7e427d4b0a8f8150532f0c0891006

commit 2712762538e7e427d4b0a8f8150532f0c0891006
Author:     Serge Gautherie <[email protected]>
AuthorDate: Mon Mar 9 16:00:53 2020 +0100
Commit:     GitHub <[email protected]>
CommitDate: Mon Mar 9 16:00:53 2020 +0100

    [UMPNPMGR] rpcserver.c: Fix debug message copypastas (#2426)
    
    Addendum to db02f87d.
---
 base/services/umpnpmgr/rpcserver.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/base/services/umpnpmgr/rpcserver.c 
b/base/services/umpnpmgr/rpcserver.c
index 3dca54effe5..313ca1c8076 100644
--- a/base/services/umpnpmgr/rpcserver.c
+++ b/base/services/umpnpmgr/rpcserver.c
@@ -2296,7 +2296,7 @@ PNP_DeleteClassKey(
 
     UNREFERENCED_PARAMETER(hBinding);
 
-    DPRINT("PNP_GetClassName(%p %S 0x%08lx)\n",
+    DPRINT("PNP_DeleteClassKey(%p %S 0x%08lx)\n",
            hBinding, pszClassGuid, ulFlags);
 
     if (ulFlags & CM_DELETE_CLASS_SUBKEYS)
@@ -2376,7 +2376,7 @@ PNP_GetInterfaceDeviceList(
         ret = NtStatusToCrError(Status);
     }
 
-    DPRINT("PNP_GetInterfaceDeviceListSize() done (returns %lx)\n", ret);
+    DPRINT("PNP_GetInterfaceDeviceList() done (returns %lx)\n", ret);
     return ret;
 }
 
@@ -2397,7 +2397,7 @@ PNP_GetInterfaceDeviceListSize(
 
     UNREFERENCED_PARAMETER(hBinding);
 
-    DPRINT("PNP_GetInterfaceDeviceList(%p %p %p %S 0x%08lx)\n",
+    DPRINT("PNP_GetInterfaceDeviceListSize(%p %p %p %S 0x%08lx)\n",
            hBinding, pulLen, InterfaceGuid, pszDeviceID, ulFlags);
 
     if (!IsValidDeviceInstanceID(pszDeviceID))

Reply via email to