From f17d3d7ebae42fc97ac740d7cc1a89d80524585d Mon Sep 17 00:00:00 2001 From: Derek Thrasher Date: Thu, 26 Mar 2020 08:48:52 -0400 Subject: [PATCH] Minor cleanup - Removed the declaration of lfs_alloc_ack - Consistent brackets --- lfs.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lfs.c b/lfs.c index 72b82208..d7b4a90b 100644 --- a/lfs.c +++ b/lfs.c @@ -10,8 +10,6 @@ #define LFS_BLOCK_NULL ((lfs_block_t)-1) #define LFS_BLOCK_INLINE ((lfs_block_t)-2) -static void lfs_alloc_ack(lfs_t *lfs); - /// Caching block device operations /// static inline void lfs_cache_drop(lfs_t *lfs, lfs_cache_t *rcache) { // do not zero, cheaper if cache is readonly or only going to be @@ -443,9 +441,9 @@ static void lfs_alloc_ack(lfs_t *lfs) { lfs->free.ack = lfs->cfg->block_count; } -/// Invalidate the lookahead buffer. This is done during mounting and failed traversals /// -static void lfs_alloc_reset(lfs_t *lfs) -{ +// Invalidate the lookahead buffer. This is done during mounting and +// failed traversals +static void lfs_alloc_reset(lfs_t *lfs) { lfs->free.off = lfs->seed % lfs->cfg->block_size; lfs->free.size = 0; lfs->free.i = 0;