diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-20 06:57:03 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-20 06:57:03 +0000 |
commit | 1a28e33054a9e3104ee3372b8ec47a3121651e5b (patch) | |
tree | 55a4d58fe7eaabc8bec6ab10674146c62f76a665 /sys/arch/mips64 | |
parent | dc74e33818e7e64e60fca295fbaff47f4e5c206f (diff) |
__attribute__ ((__packed_)) -> __packed
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/include/disklabel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mips64/include/disklabel.h b/sys/arch/mips64/include/disklabel.h index d54c41c341d..6f7d3170e3c 100644 --- a/sys/arch/mips64/include/disklabel.h +++ b/sys/arch/mips64/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.2 2004/08/23 14:24:56 pefo Exp $ */ +/* $OpenBSD: disklabel.h,v 1.3 2005/12/20 06:57:02 miod Exp $ */ /* $NetBSD: disklabel.h,v 1.1 1995/02/13 23:07:34 cgd Exp $ */ /* @@ -372,7 +372,7 @@ struct devparms { u_int16_t dp_xgap2; u_int16_t dp_xrgate; u_int16_t dp_xwcont; -} __attribute__((__packed__)); +} __packed; struct sgilabel { #define SGILABEL_MAGIC 0xbe5a941 @@ -393,7 +393,7 @@ struct sgilabel { } partitions[MAXPARTITIONS]; int32_t checksum; int32_t _pad; -} __attribute__((__packed__)); +} __packed; #define SGI_PTYPE_VOLHDR 0 #define SGI_PTYPE_RAW 3 |