diff options
Diffstat (limited to '')
-rw-r--r-- | exfat/libexfat/lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exfat/libexfat/lookup.c b/exfat/libexfat/lookup.c index d5bb3899b..3caef74ab 100644 --- a/exfat/libexfat/lookup.c +++ b/exfat/libexfat/lookup.c @@ -46,7 +46,7 @@ void exfat_closedir(struct exfat* ef, struct exfat_iterator* it) it->current = NULL; } -struct exfat_node* exfat_readdir(struct exfat* ef, struct exfat_iterator* it) +struct exfat_node* exfat_readdir(struct exfat* ef __unused, struct exfat_iterator* it) { if (it->current == NULL) it->current = it->parent->child; |