diff options
author | Anton Kling <anton@kling.gg> | 2023-10-30 21:47:59 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-10-30 21:49:48 +0100 |
commit | ca76600acc8bf7a02346efa5bd8f17072210ec01 (patch) | |
tree | 4ebf2fd205701d1582afb33420028621cab6c674 /fs/ext2.c | |
parent | 5a339a9b7b5cdcee3629b14f1b6a58ac4ab60fce (diff) |
Cleanup of things that did not get formatted or not included in old commits
Diffstat (limited to 'fs/ext2.c')
-rw-r--r-- | fs/ext2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |