Module: wine Branch: master Commit: f332822cd0d7878714f388564b0310fe203f2e97 URL: https://gitlab.winehq.org/wine/wine/-/commit/f332822cd0d7878714f388564b0310f...
Author: Hans Leidekker hans@codeweavers.com Date: Fri May 3 18:46:00 2024 +0200
odbc32: Load_odbc() returns NTSTATUS.
---
dlls/odbc32/unixlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/odbc32/unixlib.c b/dlls/odbc32/unixlib.c index 3b94180c5bc..b9386a9d2a3 100644 --- a/dlls/odbc32/unixlib.c +++ b/dlls/odbc32/unixlib.c @@ -173,7 +173,7 @@ static NTSTATUS load_odbc(void);
static NTSTATUS odbc_process_attach( void *args ) { - if (!load_odbc()) return STATUS_DLL_NOT_FOUND; + if (load_odbc()) return STATUS_DLL_NOT_FOUND; return STATUS_SUCCESS; }