Module: wine Branch: master Commit: a2a34bd80bf2244a1065a1b3daca1fda4d845a0f URL: http://source.winehq.org/git/wine.git/?a=commit;h=a2a34bd80bf2244a1065a1b3da...
Author: Rok Mandeljc rok.mandeljc@email.si Date: Thu Nov 1 08:07:50 2007 +0100
wnaspi32: Degrade ERR of not finding registry entry for a device to TRACE.
---
dlls/wnaspi32/aspi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wnaspi32/aspi.c b/dlls/wnaspi32/aspi.c index 07f6bf6..e950d7d 100644 --- a/dlls/wnaspi32/aspi.c +++ b/dlls/wnaspi32/aspi.c @@ -155,7 +155,7 @@ BOOL SCSI_GetDeviceName( int h, int c, int t, int d, LPSTR devstr, LPDWORD lpcbD snprintf(buffer, sizeof(buffer), KEYNAME_SCSI, h, c, t, d); if( RegOpenKeyExA(HKEY_LOCAL_MACHINE, buffer, 0, KEY_ALL_ACCESS, &hkeyScsi ) != ERROR_SUCCESS ) { - ERR("Could not open HKLM\%s\n", buffer); + TRACE("Could not open HKLM\%s; device does not exist\n", buffer); return FALSE; }