Fixed size of freelist[]

This commit is contained in:
Bobbi Webber-Manners
2020-02-13 22:38:25 -05:00
committed by GitHub
parent 4e443534c2
commit 207c84da21

View File

@@ -118,7 +118,7 @@ struct dirblk {
}; };
/* Globals */ /* Globals */
static uchar freelist[8096]; /* 1 bit for each of 64K blocks */ static uchar freelist[8192]; /* 1 bit for each of 64K blocks */
static uchar flloaded = 0; static uchar flloaded = 0;
static struct block *blocks = NULL; static struct block *blocks = NULL;
static struct dirblk *dirs = NULL; static struct dirblk *dirs = NULL;