summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/common/filefuncs.c2
-rw-r--r--firmware/export/filefuncs.h3
-rw-r--r--firmware/include/dircache.h1
3 files changed, 4 insertions, 2 deletions
diff --git a/firmware/common/filefuncs.c b/firmware/common/filefuncs.c
index c8ab468bcb..ea5984e485 100644
--- a/firmware/common/filefuncs.c
+++ b/firmware/common/filefuncs.c
@@ -90,7 +90,7 @@ bool dir_exists(const char *path)
90} 90}
91 91
92#if !(CONFIG_PLATFORM & PLATFORM_ANDROID) 92#if !(CONFIG_PLATFORM & PLATFORM_ANDROID)
93struct dirinfo dir_get_info(struct DIR* parent, struct dirent *entry) 93struct dirinfo dir_get_info(DIR* parent, struct dirent *entry)
94{ 94{
95 (void)parent; 95 (void)parent;
96 return entry->info; 96 return entry->info;
diff --git a/firmware/export/filefuncs.h b/firmware/export/filefuncs.h
index f69c6da29c..3d4e73ad9f 100644
--- a/firmware/export/filefuncs.h
+++ b/firmware/export/filefuncs.h
@@ -24,6 +24,7 @@
24 24
25#include <stdbool.h> 25#include <stdbool.h>
26#include "config.h" 26#include "config.h"
27#include "file.h"
27#include "dir.h" 28#include "dir.h"
28 29
29#ifdef HAVE_MULTIVOLUME 30#ifdef HAVE_MULTIVOLUME
@@ -34,6 +35,6 @@ int strip_volume(const char* name, char* namecopy);
34bool file_exists(const char *file); 35bool file_exists(const char *file);
35bool dir_exists(const char *path); 36bool dir_exists(const char *path);
36#endif 37#endif
37extern struct dirinfo dir_get_info(struct DIR* parent, struct dirent *entry); 38extern struct dirinfo dir_get_info(DIR* parent, struct dirent *entry);
38 39
39#endif /* __INCLUDE_FILEFUNCS_H_ */ 40#endif /* __INCLUDE_FILEFUNCS_H_ */
diff --git a/firmware/include/dircache.h b/firmware/include/dircache.h
index 37a803c63c..87aaa008a7 100644
--- a/firmware/include/dircache.h
+++ b/firmware/include/dircache.h
@@ -21,6 +21,7 @@
21#ifndef _DIRCACHE_H 21#ifndef _DIRCACHE_H
22#define _DIRCACHE_H 22#define _DIRCACHE_H
23 23
24#include "config.h"
24#include "dir_uncached.h" 25#include "dir_uncached.h"
25 26
26#ifdef HAVE_DIRCACHE 27#ifdef HAVE_DIRCACHE