aboutsummaryrefslogtreecommitdiff
path: root/src/lua/filesystem/luaopen_filesystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/filesystem/luaopen_filesystem.cpp')
-rw-r--r--src/lua/filesystem/luaopen_filesystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/filesystem/luaopen_filesystem.cpp b/src/lua/filesystem/luaopen_filesystem.cpp
index bad293e..daf858c 100644
--- a/src/lua/filesystem/luaopen_filesystem.cpp
+++ b/src/lua/filesystem/luaopen_filesystem.cpp
@@ -80,7 +80,7 @@ namespace lua
int size = tmp.size();
- for (int i = 0; i<size - 4; i++)
+ for (int i = 0; i<size - 4; ++i)
{
if (tmp[i] == '.')
{
@@ -99,7 +99,7 @@ namespace lua
tmp = filename;
size = tmp.size();
- for (int i = 0; i<size; i++)
+ for (int i = 0; i<size; ++i)
{
if (tmp[i] == '.')
{