Put back a 'return' statement so GCC doesn't generate a warning...

svn path=/trunk/; revision=35716
This commit is contained in:
Bill Meier 2011-01-31 04:23:46 +00:00
parent 7f94b7bc66
commit 79e8fdf14f
1 changed files with 1 additions and 0 deletions

View File

@ -264,6 +264,7 @@ static void basic_logger(const gchar *log_domain _U_,
static int wslua_panic(lua_State* LS) {
g_error("LUA PANIC: %s",lua_tostring(LS,-1));
/** g_error() does an abort() and thus never returns **/
return 0; /* keep gcc happy */
}
static void lua_load_plugins (const char *dirname)