Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Sainan committed Aug 24, 2023
1 parent a0a4bca commit 7e760b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ltablib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ static int tisfrozen (lua_State *L) {
#endif


static int tcontains(lua_State* L) {
static int tcontains (lua_State *L) {
luaL_checktype(L, 1, LUA_TTABLE);
luaL_checkany(L, 2);

Expand All @@ -476,7 +476,7 @@ static int tcontains(lua_State* L) {
}


static int tfilter(lua_State *L) {
static int tfilter (lua_State *L) {
luaL_checktype(L, 1, LUA_TTABLE);
luaL_checktype(L, 2, LUA_TFUNCTION);

Expand Down

0 comments on commit 7e760b5

Please sign in to comment.