From 6c5f7c4725ff0ff3f3783fa90e99d94d8059d262 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Mon, 27 Mar 2017 20:24:18 +0000 Subject: [PATCH] makefs: sort roundup with the other off_t members in fsinfo_t MFC after: 1 week Sponsored by: The FreeBSD Foundation --- usr.sbin/makefs/makefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/makefs/makefs.h b/usr.sbin/makefs/makefs.h index 5b33c2282d50..b3bcb0bac86f 100644 --- a/usr.sbin/makefs/makefs.h +++ b/usr.sbin/makefs/makefs.h @@ -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 */