summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anylike.org>2009-12-29 23:35:17 +0000
committerChristian Pointner <equinox@anylike.org>2009-12-29 23:35:17 +0000
commit81249d292c259ddd0b9a934a4ca5546c60c5ccfa (patch)
treefef620075407ed7d5a69834f133c0bb428db8dc4 /src
parentadded short descriptive text (diff)
removed misplaces error message
Diffstat (limited to 'src')
-rw-r--r--src/anylike.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/anylike.c b/src/anylike.c
index 4f85879..eb31e09 100644
--- a/src/anylike.c
+++ b/src/anylike.c
@@ -120,7 +120,6 @@ int init_main_loop(lua_State *L)
switch(ret) {
case LUA_ERRSYNTAX: log_printf(ERROR, "luaL_loadbuffer() syntax error: %s", err_str); break;
case LUA_ERRMEM: log_printf(ERROR, "luaL_loadbuffer() malloc error: %s", err_str); break;
- case LUA_ERRFILE: log_printf(ERROR, "luaL_loadbuffer() file access error: %s", err_str); break;
default: log_printf(ERROR, "luaL_loadbuffer() unknown error: %s", err_str); break;
}
return -1;