rm unused variables;

This commit is contained in:
bjorn 2021-05-31 15:04:24 -06:00
parent 907305e430
commit a9e22a37c2
1 changed files with 0 additions and 2 deletions

View File

@ -484,13 +484,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);
}