diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-31 15:42:08 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-31 15:42:08 +0300 |
commit | 298c2ae2c79606bd50522c5cb297855c070a823e (patch) | |
tree | 7bac04593ba313e4c0ef74c3bf27e1bebaea4575 | |
parent | 641300dccb0a68e4ede07323aabeed564a892a8f (diff) | |
download | micropython-298c2ae2c79606bd50522c5cb297855c070a823e.tar.gz micropython-298c2ae2c79606bd50522c5cb297855c070a823e.zip |
extmod/vfs_fat: Mark anused "self" arg for fat_vfs_stat().
-rw-r--r-- | extmod/vfs_fat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extmod/vfs_fat.c b/extmod/vfs_fat.c index e68f375ef7..a4a81370f9 100644 --- a/extmod/vfs_fat.c +++ b/extmod/vfs_fat.c @@ -173,6 +173,7 @@ STATIC bool path_equal(const char *path, const char *path_canonical) { /// \function stat(path) /// Get the status of a file or directory. STATIC mp_obj_t fat_vfs_stat(mp_obj_t vfs_in, mp_obj_t path_in) { + (void)vfs_in; const char *path = mp_obj_str_get_str(path_in); FILINFO fno; |