Skip to content
Snippets Groups Projects
Commit 298c2ae2 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

extmod/vfs_fat: Mark anused "self" arg for fat_vfs_stat().

parent 641300dc
Branches
No related tags found
No related merge requests found
...@@ -173,6 +173,7 @@ STATIC bool path_equal(const char *path, const char *path_canonical) { ...@@ -173,6 +173,7 @@ STATIC bool path_equal(const char *path, const char *path_canonical) {
/// \function stat(path) /// \function stat(path)
/// Get the status of a file or directory. /// 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) { 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); const char *path = mp_obj_str_get_str(path_in);
FILINFO fno; FILINFO fno;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment