Updated to match the new prototype for Sys_LoadLibrary().

git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3448 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Mark Olsen 2009-11-13 18:42:11 +00:00
parent 1d136eab27
commit 2e3a833a2b
1 changed files with 2 additions and 1 deletions

View File

@ -352,7 +352,8 @@ void Sys_CloseLibrary(dllhandle_t *lib)
{
dlclose((void*)lib);
}
dllhandle_t *Sys_LoadLibrary(char *name, dllfunction_t *funcs)
dllhandle_t *Sys_LoadLibrary(const char *name, dllfunction_t *funcs)
{
int i;
dllhandle_t lib;