Skip to content

Commit 298c2ae

Browse files
committed
extmod/vfs_fat: Mark anused "self" arg for fat_vfs_stat().
1 parent 641300d commit 298c2ae

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

extmod/vfs_fat.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ STATIC bool path_equal(const char *path, const char *path_canonical) {
173173
/// \function stat(path)
174174
/// Get the status of a file or directory.
175175
STATIC mp_obj_t fat_vfs_stat(mp_obj_t vfs_in, mp_obj_t path_in) {
176+
(void)vfs_in;
176177
const char *path = mp_obj_str_get_str(path_in);
177178

178179
FILINFO fno;

0 commit comments

Comments
 (0)