瀏覽代碼

style: format code, limit to 80 columns.

ryancw 6 月之前
父節點
當前提交
d5a86fd28d
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      lfs.c

+ 3 - 1
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;