summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 2b5dba3e18..c3c5ce3239 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -488,7 +488,7 @@ void get_current_file(char* buffer, int buffer_len)
488 struct entry* dc = tc.dircache; 488 struct entry* dc = tc.dircache;
489 struct entry* e = &dc[tc.selected_item]; 489 struct entry* e = &dc[tc.selected_item];
490 snprintf(buffer, buffer_len, "%s/%s", getcwd(NULL,0), 490 snprintf(buffer, buffer_len, "%s/%s", getcwd(NULL,0),
491 e->name); 491 tc.dirlength ? e->name : "");
492} 492}
493 493
494/* Selects a file and update tree context properly */ 494/* Selects a file and update tree context properly */