imgact_binmisc: reorder members of struct imgact_binmisc_entry (NFC)

This doesn't change anything at the moment since the out-of-order elements
were a pair of uint32_t, but future additions may have caused unnecessary
padding by following the existing precedent.

MFC after:	1 week
This commit is contained in:
Kyle Evans 2020-11-07 16:41:59 +00:00
parent e0f14ecf60
commit ecb4fdf943
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=367452

View File

@ -58,16 +58,16 @@ __FBSDID("$FreeBSD$");
* Node of the interpreter list.
*/
typedef struct imgact_binmisc_entry {
SLIST_ENTRY(imgact_binmisc_entry) link;
char *ibe_name;
uint8_t *ibe_magic;
uint32_t ibe_moffset;
uint32_t ibe_msize;
uint8_t *ibe_mask;
uint8_t *ibe_interpreter;
uint32_t ibe_interp_argcnt;
uint32_t ibe_interp_length;
uint32_t ibe_flags;
SLIST_ENTRY(imgact_binmisc_entry) link;
uint32_t ibe_moffset;
uint32_t ibe_msize;
} imgact_binmisc_entry_t;
/*