diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-06-26 23:11:32 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-06-26 23:11:32 +0000 |
commit | a1d7cd01feeb95baf8b01d04ac65c3a898effa1e (patch) | |
tree | 3befb7a5fe40c753ec4e30c05439c51e91bf8e8c /sys/arch/amd64/include | |
parent | 9e9988f19afd848e2f55a63d7b7611b6cb7c706f (diff) |
Clean up some inconsistancies in definitions around DOS MBR code. No
functional change.
ok deraadt@
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/disklabel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/disklabel.h b/sys/arch/amd64/include/disklabel.h index bf6b91950b0..d312d90b226 100644 --- a/sys/arch/amd64/include/disklabel.h +++ b/sys/arch/amd64/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.2 2004/11/10 10:36:12 grange Exp $ */ +/* $OpenBSD: disklabel.h,v 1.3 2006/06/26 23:11:31 krw Exp $ */ /* $NetBSD: disklabel.h,v 1.3 1996/03/09 20:52:54 ghudson Exp $ */ /* @@ -79,7 +79,7 @@ struct dos_mbr { u_int8_t dmbr_boot[DOSPARTOFF]; struct dos_partition dmbr_parts[NDOSPART]; u_int16_t dmbr_sign; -} __attribute__((__packed__)); +} __packed; #define DOSMBR_SIGNATURE (0xaa55) #define DOSMBR_SIGNATURE_OFF (0x1fe) |