diff options
Diffstat (limited to 'src/lua_vars.c')
| -rw-r--r-- | src/lua_vars.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lua_vars.c b/src/lua_vars.c index ddb4c5a..7420ae0 100644 --- a/src/lua_vars.c +++ b/src/lua_vars.c @@ -58,11 +58,9 @@ void init_install_directories(void) { void init_prefix_directory(void) { lua_getglobal(L, "prefix"); if (!lua_isstring(L, -1)) { -// printf(PRINT_ERROR "init.lua: 'prefix' is not a string.\n"); lua_isnt_type("prefix", "string."); return; } inst_dirs.prefix = mstr(lua_tostring(L, -1)); -// snprintf(prefix_dir, MAX_PATH_LEN, "%s", lua_tostring(L, -1)); lua_pop(L, 1); } |
