Skip to content

Commit

Permalink
fix typo invalid for loop end
Browse files Browse the repository at this point in the history
  • Loading branch information
sapier authored and kwolekr committed Mar 13, 2013
1 parent d102232 commit 66750dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scriptapi.cpp
Expand Up @@ -906,7 +906,7 @@ static int l_get_modnames(lua_State *L)
{
bool added = false;
for(std::list<std::string>::iterator x = mods_sorted.begin();
x != mods_unsorted.end(); ++x)
x != mods_sorted.end(); ++x)
{
// I doubt anybody using Minetest will be using
// anything not ASCII based :)
Expand Down

0 comments on commit 66750dc

Please sign in to comment.