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/ocfs2.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/ocfs2.c')
-rw-r--r-- | util-linux/volume_id/ocfs2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/volume_id/ocfs2.c b/util-linux/volume_id/ocfs2.c index 8417d91bb..14573caa1 100644 --- a/util-linux/volume_id/ocfs2.c +++ b/util-linux/volume_id/ocfs2.c | |||
@@ -78,7 +78,7 @@ struct ocfs2_super_block { | |||
78 | uint64_t s_first_cluster_group; /* Block offset of 1st cluster group header */ | 78 | uint64_t s_first_cluster_group; /* Block offset of 1st cluster group header */ |
79 | uint8_t s_label[OCFS2_MAX_VOL_LABEL_LEN]; /* Label for mounting, etc. */ | 79 | uint8_t s_label[OCFS2_MAX_VOL_LABEL_LEN]; /* Label for mounting, etc. */ |
80 | uint8_t s_uuid[OCFS2_VOL_UUID_LEN]; /* 128-bit uuid */ | 80 | uint8_t s_uuid[OCFS2_VOL_UUID_LEN]; /* 128-bit uuid */ |
81 | } __attribute__((__packed__)); | 81 | } PACKED; |
82 | 82 | ||
83 | int volume_id_probe_ocfs2(struct volume_id *id /*,uint64_t off*/) | 83 | int volume_id_probe_ocfs2(struct volume_id *id /*,uint64_t off*/) |
84 | { | 84 | { |