makefs: sort roundup with the other off_t members in fsinfo_t

MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2017-03-27 20:24:18 +00:00
parent cb99e844b4
commit 6c5f7c4725
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=316055

View File

@ -151,12 +151,12 @@ typedef struct makefs_fsinfo {
off_t maxsize; /* maximum size image can be */
off_t freefiles; /* free file entries to leave */
off_t freeblocks; /* free blocks to leave */
off_t roundup; /* round image size up to this value */
int freefilepc; /* free file % */
int freeblockpc; /* free block % */
int needswap; /* non-zero if byte swapping needed */
int sectorsize; /* sector size */
int sparse; /* sparse image, don't fill it with zeros */
off_t roundup; /* round image size up to this value */
void *fs_specific; /* File system specific additions. */
option_t *fs_options; /* File system specific options */