diff options
author | Denys Vlasenko | 2009-09-16 00:58:11 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-09-16 00:58:11 +0200 |
commit | 8dc0e1929e3af3b1673e5a8e486808386400c020 (patch) | |
tree | 0550684999338af8f15de76c5599f9dead3fdfd6 /util-linux/volume_id/unused_highpoint.c | |
parent | f2c184be835fbcbd04d06fce22783c6a5d37b563 (diff) | |
download | busybox-8dc0e1929e3af3b1673e5a8e486808386400c020.zip busybox-8dc0e1929e3af3b1673e5a8e486808386400c020.tar.gz |
use PACKED macro insted of open-coding GCC-ism
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/volume_id/unused_highpoint.c')
-rw-r--r-- | util-linux/volume_id/unused_highpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/volume_id/unused_highpoint.c b/util-linux/volume_id/unused_highpoint.c index 57c5cad..6fd58b7 100644 --- a/util-linux/volume_id/unused_highpoint.c +++ b/util-linux/volume_id/unused_highpoint.c @@ -23,11 +23,11 @@ struct hpt37x_meta { uint8_t filler1[32]; uint32_t magic; -} __attribute__((packed)); +} PACKED; struct hpt45x_meta { uint32_t magic; -} __attribute__((packed)); +} PACKED; #define HPT37X_CONFIG_OFF 0x1200 #define HPT37X_MAGIC_OK 0x5a7816f0 |