We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2349ac8 commit d5a86fdCopy full SHA for d5a86fd
lfs.c
@@ -5225,7 +5225,9 @@ static int lfs_fs_gc_(lfs_t *lfs) {
5225
}
5226
5227
// try to populate the lookahead buffer, unless it's already full
5228
- if (lfs->lookahead.size < lfs_min(8 * lfs->cfg->lookahead_size, lfs->block_count)) {
+ if (lfs->lookahead.size < lfs_min(
5229
+ 8 * lfs->cfg->lookahead_size,
5230
+ lfs->block_count)) {
5231
err = lfs_alloc_scan(lfs);
5232
if (err) {
5233
return err;
0 commit comments