Bruno Jesus : odbc32: Upgrade a WARN into ERR when the library is not found.

Alexandre Julliard julliard at winehq.org
Thu Aug 11 09:37:49 CDT 2016


Module: wine
Branch: master
Commit: dca0e38d82c737cd8aeab63e08cf1990d05d9671
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dca0e38d82c737cd8aeab63e08cf1990d05d9671

Author: Bruno Jesus <00cpxxx at gmail.com>
Date:   Tue Aug  9 18:06:47 2016 -0300

odbc32: Upgrade a WARN into ERR when the library is not found.

Signed-off-by: Bruno Jesus <00cpxxx at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/odbc32/proxyodbc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/odbc32/proxyodbc.c b/dlls/odbc32/proxyodbc.c
index d7ebf10..aca0792 100644
--- a/dlls/odbc32/proxyodbc.c
+++ b/dlls/odbc32/proxyodbc.c
@@ -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;
 }




More information about the wine-cvs mailing list