https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a2a372398a68c062fe31e…
commit a2a372398a68c062fe31e8fe72924145209246de
Author: Eric Kohl <eric.kohl(a)reactos.org>
AuthorDate: Sun Nov 5 17:55:25 2017 +0100
[SETUPAPI]: CM_Open_DevNode_Key_Ex: FIXME/ERR --> TRACE
---
dll/win32/setupapi/cfgmgr.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dll/win32/setupapi/cfgmgr.c b/dll/win32/setupapi/cfgmgr.c
index 80b535c3da..898b755ec3 100644
--- a/dll/win32/setupapi/cfgmgr.c
+++ b/dll/win32/setupapi/cfgmgr.c
@@ -5242,7 +5242,7 @@ CM_Open_DevNode_Key_Ex(
HKEY hRootKey = NULL;
CONFIGRET ret = CR_CALL_NOT_IMPLEMENTED;
- FIXME("CM_Open_DevNode_Key_Ex(%lx %lx %lu %lx %p %lx %lx)\n",
+ TRACE("CM_Open_DevNode_Key_Ex(%lx %lx %lu %lx %p %lx %lx)\n",
dnDevNode, samDesired, ulHardwareProfile, Disposition, phkDevice, ulFlags,
hMachine);
if (phkDevice == NULL)
@@ -5304,13 +5304,13 @@ CM_Open_DevNode_Key_Ex(
if (ret != CR_SUCCESS)
goto done;
- ERR("pszKeyPath: %S\n", pszKeyPath);
- ERR("pszInstancePath: %S\n", pszInstancePath);
+ TRACE("pszKeyPath: %S\n", pszKeyPath);
+ TRACE("pszInstancePath: %S\n", pszInstancePath);
wcscat(pszKeyPath, L"\\");
wcscat(pszKeyPath, pszInstancePath);
- ERR("pszKeyPath: %S\n", pszKeyPath);
+ TRACE("pszKeyPath: %S\n", pszKeyPath);
if (hMachine == NULL)
{