summaryrefslogtreecommitdiff
path: root/fs/ext2.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-10-30 21:47:59 +0100
committerAnton Kling <anton@kling.gg>2023-10-30 21:49:48 +0100
commitca76600acc8bf7a02346efa5bd8f17072210ec01 (patch)
tree4ebf2fd205701d1582afb33420028621cab6c674 /fs/ext2.c
parent5a339a9b7b5cdcee3629b14f1b6a58ac4ab60fce (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.c2
1 files changed, 1 insertions, 1 deletions
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;