Skip to content
Snippets Groups Projects
Commit 70929bbb authored by deuce's avatar deuce
Browse files

Add default return value for xp_dlopen() on Win32

parent 7c931fda
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,7 @@ DLLEXPORT dll_handle DLLCALL xp_dlopen(const char **names, int mode, int major)
if((ret=LoadLibrary(fname))!=NULL)
return(ret);
}
return(NULL);
}
#endif /* __unix__,_WIN32 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment