From ca76600acc8bf7a02346efa5bd8f17072210ec01 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 30 Oct 2023 21:47:59 +0100 Subject: Cleanup of things that did not get formatted or not included in old commits --- fs/ext2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs/ext2.c') diff --git a/fs/ext2.c b/fs/ext2.c index 2c0f727..bd0fb07 100644 --- a/fs/ext2.c +++ b/fs/ext2.c @@ -64,7 +64,7 @@ void ext2_read_block(uint32_t block, void *address, size_t size, void ext2_write_block(uint32_t block, void *address, size_t size, size_t offset) { - // Invalidate a old cache + // Invalidate a old cache for (int i = 0; i < NUM_BLOCK_CACHE; i++) { if (cache[i].block_num == block) { cache[i].block_num = 0; -- cgit v1.2.3