Skip to content
This repository was archived by the owner on Dec 29, 2024. It is now read-only.

Commit a463b0d

Browse files
authored
Missed some
1 parent c079934 commit a463b0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/luaState.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ Ref<LuaError> LuaState::bindLibraries(Array libs) {
5252
if (!loadLuaLibrary(L, libs[i])) {
5353
return LuaError::newError(vformat("Library \"%s\" does not exist.", libs[i]), LuaError::ERR_RUNTIME);
5454
}
55-
if (libs[i] == String("base") ) {
55+
if (libs[i] == String("base")) {
5656
lua_register(L, "print", luaPrint);
5757
}
5858
}
59-
59+
6060
return nullptr;
6161
}
6262

0 commit comments

Comments
 (0)