diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-16 00:58:11 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-16 00:58:11 +0200 |
commit | 8dc0e1929e3af3b1673e5a8e486808386400c020 (patch) | |
tree | 0550684999338af8f15de76c5599f9dead3fdfd6 /util-linux/volume_id/ext.c | |
parent | f2c184be835fbcbd04d06fce22783c6a5d37b563 (diff) | |
download | busybox-w32-8dc0e1929e3af3b1673e5a8e486808386400c020.tar.gz busybox-w32-8dc0e1929e3af3b1673e5a8e486808386400c020.tar.bz2 busybox-w32-8dc0e1929e3af3b1673e5a8e486808386400c020.zip |
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/ext.c')
-rw-r--r-- | util-linux/volume_id/ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/volume_id/ext.c b/util-linux/volume_id/ext.c index b052e04ce..e4097737b 100644 --- a/util-linux/volume_id/ext.c +++ b/util-linux/volume_id/ext.c | |||
@@ -37,7 +37,7 @@ struct ext2_super_block { | |||
37 | uint32_t feature_ro_compat; | 37 | uint32_t feature_ro_compat; |
38 | uint8_t uuid[16]; | 38 | uint8_t uuid[16]; |
39 | uint8_t volume_name[16]; | 39 | uint8_t volume_name[16]; |
40 | } __attribute__((__packed__)); | 40 | } PACKED; |
41 | 41 | ||
42 | #define EXT3_FEATURE_COMPAT_HAS_JOURNAL 0x00000004 | 42 | #define EXT3_FEATURE_COMPAT_HAS_JOURNAL 0x00000004 |
43 | #define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV 0x00000008 | 43 | #define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV 0x00000008 |