Fix a couple more ps3 plugin related warnings.

Whee :P
This commit is contained in:
Bill Currie 2012-08-17 10:20:35 +09:00
parent 41876e8c37
commit cbaad33638

View file

@ -103,6 +103,7 @@ pi_close_lib (void *handle)
#elif defined (_WIN32) #elif defined (_WIN32)
return (FreeLibrary (handle) == 0); return (FreeLibrary (handle) == 0);
#endif #endif
return 1;
} }
static void * static void *
@ -113,6 +114,7 @@ pi_get_symbol (void *handle, const char *name)
#elif defined (_WIN32) #elif defined (_WIN32)
return GetProcAddress (handle, name); return GetProcAddress (handle, name);
#endif #endif
return 0;
} }
static void * static void *