littlefs_fetchdirent() fix missing return statement

This commit is contained in:
2025-10-03 22:34:32 +02:00
parent 08793178f1
commit fc47ff581e

View File

@ -204,6 +204,7 @@ int32_t littlefs_fetchdirent(struct VfsMountPoint *vmp, const char *path, IoctlD
lfs_dir_close(&vmp->fs.littlefs.instance, &dir); lfs_dir_close(&vmp->fs.littlefs.instance, &dir);
spinlock_release(&vmp->spinlock); spinlock_release(&vmp->spinlock);
return E_OK;
} }
int portlfs_read(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) { int portlfs_read(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) {