Skip to content

Commit 1d2e4b2

Browse files
Fix Windows compilation error
1 parent f8a748f commit 1d2e4b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

revdb/src/revdb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ DATABASEREC *LoadDatabaseDriverFromName(const char *p_type)
280280
t_result = new DATABASEREC;
281281
#if (defined _MACOSX && !defined _MAC_SERVER)
282282
t_result -> driverref = (CFBundleRef)t_handle;
283-
#elif (defined _WINDOWS)
283+
#elif (defined _WINDOWS) || defined _WINDOWS_SERVER
284284
t_result -> driverref = (HINSTANCE)t_handle;
285285
#else
286286
t_result -> driverref = t_handle;

0 commit comments

Comments
 (0)