diff options
author | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2003-11-16 21:06:15 +0000 |
---|---|---|
committer | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2003-11-16 21:06:15 +0000 |
commit | 49644758563424ad9407ef4d4efa81fd83c2afe2 (patch) | |
tree | 49bc70f7ebca3876779d8d0db2c20bd268deccaf /sbin/iopctl/iopctl.c | |
parent | 4e13879e64b64a3bf17cb067b974522e66b3a70e (diff) |
__attribute__((__packed__)) -> __packed
Diffstat (limited to 'sbin/iopctl/iopctl.c')
-rw-r--r-- | sbin/iopctl/iopctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/iopctl/iopctl.c b/sbin/iopctl/iopctl.c index de43a4c7f14..bf955eb70a2 100644 --- a/sbin/iopctl/iopctl.c +++ b/sbin/iopctl/iopctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iopctl.c,v 1.4 2003/07/29 18:38:36 deraadt Exp $ */ +/* $OpenBSD: iopctl.c,v 1.5 2003/11/16 21:06:14 avsm Exp $ */ /* $NetBSD: iopctl.c,v 1.8 2001/03/20 13:07:51 ad Exp $ */ /*- @@ -338,7 +338,7 @@ showddmid(char **argv) struct i2o_param_read_results prr; struct i2o_param_ddm_identity di; char padding[128]; - } __attribute__ ((__packed__)) p; + } __packed p; char ident[128]; getparam(atoi(argv[0]), I2O_PARAM_DDM_IDENTITY, &p, sizeof(p)); |