1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-11 09:50:12 +00:00

Fix alignment issue r350599.

MFC after:	10 days
This commit is contained in:
Alexander Motin 2019-08-05 19:30:28 +00:00
parent a1549acbaf
commit 217c81f334
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350609

View File

@ -351,7 +351,7 @@ resvreport(const struct cmd *f, int argc, char *argv[])
struct nvme_pt_command pt;
struct nvme_resv_status *s;
struct nvme_resv_status_ext *e;
uint8_t data[4096];
uint8_t data[4096] __aligned(4);
int fd;
u_int i, n;
uint32_t nsid;