From: Alan Cox Date: Sun, 31 Dec 2017 15:31:58 +0000 (+0000) Subject: filesys: fix typo X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=b12de2215e678aa2d2e9ca3509afe1c1007b1017;p=FUZIX.git filesys: fix typo --- diff --git a/Kernel/filesys.c b/Kernel/filesys.c index 57e67b30..74dcba52 100644 --- a/Kernel/filesys.c +++ b/Kernel/filesys.c @@ -687,7 +687,7 @@ void blk_free(uint16_t devno, blkno_t blk) if(dev->s_nfree == FILESYS_TABSIZE) { buf = bread(devno, blk, 1); if (buf) { - /* nfree must directly preced the blocks and without padding. That's + /* nfree must directly preceed the blocks and without padding. That's the assumption UZI always had */ blkfromk(&dev->s_nfree, buf, 0, sizeof(int) + 50 * sizeof(blkno_t)); bawrite(buf);