From 4499f1f1117614f1e77ef4c551cafdd96c281d12 Mon Sep 17 00:00:00 2001 From: George Sokianos Date: Sun, 26 Dec 2021 17:08:09 +0000 Subject: [PATCH] Some code cleanup and added .config folder to gitignore --- .gitignore | 1 + src/api/system.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2f72be74..b0d1d037 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ subprojects/lua subprojects/libagg sybprojects/lua lite +.config/ diff --git a/src/api/system.c b/src/api/system.c index 0bc62192..785c3ebe 100644 --- a/src/api/system.c +++ b/src/api/system.c @@ -434,7 +434,6 @@ static int f_list_dir(lua_State *L) { static int f_absolute_path(lua_State *L) { const char *path = luaL_checkstring(L, 1); char *res = realpath(path, NULL); - //printf("DBG: f_absolute_path() %s\n", res); if (!res) { return 0; } lua_pushstring(L, res); free(res);