commit | 3f6b4e08e38d3205f7a5a21f7ff81ab9f3c3c497 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Fri Jan 27 22:40:15 2017 +1100 |
committer | Damien George <damien.p.george@gmail.com> | Fri Jan 27 23:22:15 2017 +1100 |
tree | 0edefa2e716fdc0d775906df037f8df5804b2d8d | |
parent | f488fa29e485964d15f9f9dbfad5180c580e4b24 [diff] [blame] |
extmod/vfs: Expose mp_vfs_mount_t type. It should only be used for low-level things and with caution, for example putting mounted VFS data in ROM or the static data section.
diff --git a/py/mpstate.h b/py/mpstate.h index 9c73f77..daf085a 100644 --- a/py/mpstate.h +++ b/py/mpstate.h
@@ -166,8 +166,8 @@ #endif #if MICROPY_VFS - struct _vfs_mount_t *vfs_cur; - struct _vfs_mount_t *vfs_mount_table; + struct _mp_vfs_mount_t *vfs_cur; + struct _mp_vfs_mount_t *vfs_mount_table; #endif //