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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ struct dirblk {
};
/* 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 struct block *blocks = NULL;
static struct dirblk *dirs = NULL;