summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-01-27 22:40:15 +1100
committerDamien George <damien.p.george@gmail.com>2017-01-27 23:22:15 +1100
commit3f6b4e08e38d3205f7a5a21f7ff81ab9f3c3c497 (patch)
tree0edefa2e716fdc0d775906df037f8df5804b2d8d /py
parentf488fa29e485964d15f9f9dbfad5180c580e4b24 (diff)
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.
Diffstat (limited to 'py')
-rw-r--r--py/mpstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/mpstate.h b/py/mpstate.h
index 9c73f7778..daf085a06 100644
--- a/py/mpstate.h
+++ b/py/mpstate.h
@@ -166,8 +166,8 @@ typedef struct _mp_state_vm_t {
#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
//