Commit 268fb3d1 authored by Arkadiusz Hiler's avatar Arkadiusz Hiler Committed by Alexandre Julliard

setupapi: Demote ERR on opening driver key to a TRACE.

open_driver_key() is called by create_driver_key() and SetupDiOpenDevRegKey() which depend on the failure path to detect the presence of the key. This causes a lot of unnecessary errors being printed out. Signed-off-by: 's avatarArkadiusz Hiler <ahiler@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 33865600
......@@ -560,7 +560,7 @@ static LONG open_driver_key(struct device *device, REGSAM access, HKEY *key)
RegCloseKey(class_key);
return l;
}
ERR("Failed to open driver key, error %u.\n", l);
TRACE("Failed to open driver key, error %u.\n", l);
}
RegCloseKey(class_key);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment