1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

Change the type of the freelist sectors variable to u_int64_t in

order to ensure that initializers will be of correct type.
This commit is contained in:
Greg Lehey 1999-07-02 07:56:47 +00:00
parent 89ee7f9210
commit 7d6715c52c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48450

View File

@ -378,8 +378,8 @@ struct drive {
int freelist_size; /* number of entries alloced in free list */
int freelist_entries; /* number of entries used in free list */
struct drive_freelist { /* sorted list of free space on drive */
u_int64_t offset;
long sectors;
u_int64_t offset; /* offset of entry */
u_int64_t sectors; /* and length in sectors */
} *freelist;
#ifdef VINUMDEBUG
char lockfilename[16]; /* name of file from which we were locked */