summaryrefslogtreecommitdiff
path: root/apps/filetree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/filetree.c')
-rw-r--r--apps/filetree.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/filetree.c b/apps/filetree.c
index 460ab9e453..fa942b263d 100644
--- a/apps/filetree.c
+++ b/apps/filetree.c
@@ -609,11 +609,12 @@ int ft_enter(struct tree_context* c)
609 case FILE_ATTR_ROCK: 609 case FILE_ATTR_ROCK:
610 case FILE_ATTR_LUA: 610 case FILE_ATTR_LUA:
611 { 611 {
612 char *plugin = buf, *argument = NULL; 612 char *plugin = buf, *argument = NULL, lua_path[MAX_PATH];
613 int ret; 613 int ret;
614 614
615 if ((file->attr & FILE_ATTR_MASK) == FILE_ATTR_LUA) { 615 if ((file->attr & FILE_ATTR_MASK) == FILE_ATTR_LUA) {
616 plugin = VIEWERS_DIR "/lua.rock"; /* Use a #define here ? */ 616 snprintf(lua_path, sizeof(lua_path)-1, "%s/lua.rock", VIEWERS_DIR); /* Use a #define here ? */
617 plugin = lua_path;
617 argument = buf; 618 argument = buf;
618 } 619 }
619 620