diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-29 15:21:46 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-30 12:26:07 +1100 |
commit | 1808b2e8d5c9fff8020628a7849a537ffa9790e3 (patch) | |
tree | 4f511c33f4355880fc9a224d742e90c6758f799f /extmod/vfs_fat_misc.c | |
parent | 3d6f9572084a8bcba762899ee4f8ea15ddf010ab (diff) | |
download | micropython-1808b2e8d5c9fff8020628a7849a537ffa9790e3.tar.gz micropython-1808b2e8d5c9fff8020628a7849a537ffa9790e3.zip |
extmod: Remove MICROPY_FSUSERMOUNT and related files.
Replaced by MICROPY_VFS and the VFS sub-system.
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 7e7576398b..82ef91a1fb 100644 --- a/extmod/vfs_fat_misc.c +++ b/extmod/vfs_fat_misc.c @@ -25,7 +25,7 @@ */ #include "py/mpconfig.h" -#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT +#if MICROPY_VFS_FAT #include <string.h> #include "py/nlr.h" |