odbc32: Upgrade a WARN into ERR when the library is not found.
Signed-off-by: Bruno Jesus <00cpxxx@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4f06fd1490
commit
dca0e38d82
|
@ -520,7 +520,7 @@ static BOOL ODBC_LoadDriverManager(void)
|
|||
return TRUE;
|
||||
}
|
||||
failed:
|
||||
WARN("failed to open library %s: %s\n", debugstr_a(s), error);
|
||||
ERR_(winediag)("failed to open library %s: %s\n", debugstr_a(s), error);
|
||||
nErrorType = ERROR_LIBRARY_NOT_FOUND;
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue