rm unused variables;

This commit is contained in:
bjorn 2021-05-31 15:04:24 -06:00
parent 89550e55d6
commit 46a5c83a08
1 changed files with 0 additions and 2 deletions

View File

@ -486,13 +486,11 @@ static int libLoaderCommon(lua_State* L, bool allInOneFlag) {
}
static int libLoader(lua_State* L) {
const char* module = lua_tostring(L, 1);
bool allInOneFlag = false;
return libLoaderCommon(L, allInOneFlag);
}
static int libLoaderAllInOne(lua_State* L) {
const char* module = lua_tostring(L, 1);
bool allInOneFlag = true;
return libLoaderCommon(L, allInOneFlag);
}