small fix

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4822 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2015-01-07 13:48:24 +00:00
parent fa850a988e
commit c7e4a1b183
1 changed files with 1 additions and 1 deletions

View File

@ -829,7 +829,7 @@ void Sys_CloseLibrary(dllhandle_t *lib)
dllhandle_t *Sys_LoadLibrary(const char *name, dllfunction_t *funcs)
{
int i;
dllhandle_t lib;
dllhandle_t *lib;
lib = dlopen (name, RTLD_LAZY);
if (!lib)