lib/littlefs: Guard lfs2_file_rawopen with LFS2_NO_MALLOC.

To prevent warnings about this function being unused when malloc is
disabled.

Signed-off-by: Damien George <damien@micropython.org>
pull/8674/head
Damien George 2022-05-17 16:37:33 +10:00
rodzic 115a23da24
commit 3a544b832b
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -2998,12 +2998,14 @@ cleanup:
return err;
}
#ifndef LFS2_NO_MALLOC
static int lfs2_file_rawopen(lfs2_t *lfs2, lfs2_file_t *file,
const char *path, int flags) {
static const struct lfs2_file_config defaults = {0};
int err = lfs2_file_rawopencfg(lfs2, file, path, flags, &defaults);
return err;
}
#endif
static int lfs2_file_rawclose(lfs2_t *lfs2, lfs2_file_t *file) {
#ifndef LFS2_READONLY