From cbaad336380bfe4ee5e46878dcee9614f7e84b8b Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 17 Aug 2012 10:20:35 +0900 Subject: [PATCH] Fix a couple more ps3 plugin related warnings. Whee :P --- libs/util/plugin.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/util/plugin.c b/libs/util/plugin.c index 38235b62a..76de5cd41 100644 --- a/libs/util/plugin.c +++ b/libs/util/plugin.c @@ -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 *