summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index fc36671217..e981aeecfc 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -1012,7 +1012,7 @@ void tree_mem_init(void)
cache->name_buffer = buffer_alloc(cache->name_buffer_size);
cache->max_entries = global_settings.max_files_in_dir;
- cache->entries = buffer_alloc(cache->max_entries*(sizeof(cache->entries)));
+ cache->entries = buffer_alloc(cache->max_entries*(sizeof(struct entry)));
tree_get_filetypes(&filetypes, &filetypes_count);
}