svn commit: r316055 - head/usr.sbin/makefs

Ed Maste emaste at FreeBSD.org
Mon Mar 27 20:24:20 UTC 2017


Author: emaste
Date: Mon Mar 27 20:24:18 2017
New Revision: 316055
URL: https://svnweb.freebsd.org/changeset/base/316055

Log:
  makefs: sort roundup with the other off_t members in fsinfo_t
  
  MFC after:	1 week
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/makefs/makefs.h

Modified: head/usr.sbin/makefs/makefs.h
==============================================================================
--- head/usr.sbin/makefs/makefs.h	Mon Mar 27 19:26:09 2017	(r316054)
+++ head/usr.sbin/makefs/makefs.h	Mon Mar 27 20:24:18 2017	(r316055)
@@ -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 */


More information about the svn-src-head mailing list