style: format code, limit to 80 columns.

This commit is contained in:
ryancw
2025-06-03 09:46:59 +08:00
parent 2349ac8c96
commit d5a86fd28d

4
lfs.c
View File

@ -5225,7 +5225,9 @@ static int lfs_fs_gc_(lfs_t *lfs) {
}
// try to populate the lookahead buffer, unless it's already full
if (lfs->lookahead.size < lfs_min(8 * lfs->cfg->lookahead_size, lfs->block_count)) {
if (lfs->lookahead.size < lfs_min(
8 * lfs->cfg->lookahead_size,
lfs->block_count)) {
err = lfs_alloc_scan(lfs);
if (err) {
return err;