mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Fix a couple more ps3 plugin related warnings.
Whee :P
This commit is contained in:
parent
41876e8c37
commit
cbaad33638
1 changed files with 2 additions and 0 deletions
|
@ -103,6 +103,7 @@ pi_close_lib (void *handle)
|
|||
#elif defined (_WIN32)
|
||||
return (FreeLibrary (handle) == 0);
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
|
||||
static void *
|
||||
|
@ -113,6 +114,7 @@ pi_get_symbol (void *handle, const char *name)
|
|||
#elif defined (_WIN32)
|
||||
return GetProcAddress (handle, name);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void *
|
||||
|
|
Loading…
Reference in a new issue