mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
__packed has no effect on u_int8_t's except to cause a warning (and
never has had any effect). Approved by: re (rwatson)
This commit is contained in:
parent
61ba2e0a14
commit
e106f3d812
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@
|
|||
struct vesa_info
|
||||
{
|
||||
/* mandatory fields */
|
||||
u_int8_t v_sig[4] __packed; /* VESA */
|
||||
u_int8_t v_sig[4]; /* VESA */
|
||||
u_int16_t v_version __packed; /* ver in BCD */
|
||||
u_int32_t v_oemstr __packed; /* OEM string */
|
||||
u_int32_t v_flags __packed; /* flags */
|
||||
|
|
|
|||
Loading…
Reference in a new issue