From d5a86fd28de74dd1d5a6126d843b16276e6023cf Mon Sep 17 00:00:00 2001 From: ryancw <1831931681@qq.com> Date: Tue, 3 Jun 2025 09:46:59 +0800 Subject: [PATCH] style: format code, limit to 80 columns. --- lfs.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lfs.c b/lfs.c index cec48709..1126b2a3 100644 --- a/lfs.c +++ b/lfs.c @@ -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;