summaryrefslogtreecommitdiff
path: root/firmware/common/dircache.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/dircache.c')
-rw-r--r--firmware/common/dircache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/common/dircache.c b/firmware/common/dircache.c
index 17033e1827..0bdd0657bd 100644
--- a/firmware/common/dircache.c
+++ b/firmware/common/dircache.c
@@ -690,9 +690,9 @@ void dircache_init(void)
690 opendirs[i].secondary_entry.d_name = buffer_alloc(MAX_PATH); 690 opendirs[i].secondary_entry.d_name = buffer_alloc(MAX_PATH);
691 } 691 }
692 692
693 queue_init(&dircache_queue); 693 queue_init(&dircache_queue, true);
694 create_thread(dircache_thread, dircache_stack, 694 create_thread(dircache_thread, dircache_stack,
695 sizeof(dircache_stack), dircache_thread_name); 695 sizeof(dircache_stack), dircache_thread_name IF_PRIO(, PRIORITY_BACKGROUND));
696} 696}
697 697
698/** 698/**