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

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 */