diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-29 23:05:33 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-30 12:08:15 +1100 |
commit | ec3274324b0f7460f0276957184dc4b9f33a9bc7 (patch) | |
tree | 298421a7dd899ee778ae08388df9eeacd7bd4a88 /extmod/vfs_fat_misc.c | |
parent | 28899cd9718e667f4af923789dc1d64d8fb7a263 (diff) | |
download | micropython-ec3274324b0f7460f0276957184dc4b9f33a9bc7.tar.gz micropython-ec3274324b0f7460f0276957184dc4b9f33a9bc7.zip |
extmod/vfs_fat: Update to use FF_DIR instead of DIR.
Diffstat (limited to 'extmod/vfs_fat_misc.c')
-rw-r--r-- | extmod/vfs_fat_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/vfs_fat_misc.c b/extmod/vfs_fat_misc.c index 489e535868..2f06d9f637 100644 --- a/extmod/vfs_fat_misc.c +++ b/extmod/vfs_fat_misc.c @@ -54,7 +54,7 @@ mp_obj_t fat_vfs_listdir(const char *path, bool is_str_type) { mp_obj_t fat_vfs_listdir2(fs_user_mount_t *vfs, const char *path, bool is_str_type) { FRESULT res; FILINFO fno; - DIR dir; + FF_DIR dir; #if !MICROPY_FATFS_OO && _USE_LFN fno.lfname = lfn; fno.lfsize = sizeof lfn; |