diff options
Diffstat (limited to 'src/lua/filesystem')
-rw-r--r-- | src/lua/filesystem/luaopen_filesystem.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lua/filesystem/luaopen_filesystem.cpp b/src/lua/filesystem/luaopen_filesystem.cpp index f4138fc..f764a68 100644 --- a/src/lua/filesystem/luaopen_filesystem.cpp +++ b/src/lua/filesystem/luaopen_filesystem.cpp @@ -119,11 +119,11 @@ namespace lua } static const luaL_Reg f[] = { - {"init", l_init}, - {"mount", l_mount}, - {"isdir", l_isDir}, - {"exist", l_exist}, - {0, 0} + { "init", l_init }, + { "mount", l_mount }, + { "isdir", l_isDir }, + { "exist", l_exist }, + { 0, 0 } }; int luaopen_filesystem(lua_State* L) |