Skip to content

Commit d5a86fd

Browse files
committed
style: format code, limit to 80 columns.
1 parent 2349ac8 commit d5a86fd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lfs.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5225,7 +5225,9 @@ static int lfs_fs_gc_(lfs_t *lfs) {
52255225
}
52265226

52275227
// 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)) {
5228+
if (lfs->lookahead.size < lfs_min(
5229+
8 * lfs->cfg->lookahead_size,
5230+
lfs->block_count)) {
52295231
err = lfs_alloc_scan(lfs);
52305232
if (err) {
52315233
return err;

0 commit comments

Comments
 (0)