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:
Bruno Jesus 2016-08-09 18:06:47 -03:00 committed by Alexandre Julliard
parent 4f06fd1490
commit dca0e38d82
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}