4efc0c7
The finder_info block in the hfsplus volume header is currently defined as
4efc0c7
an array of 8 bit values, but TN1150 defines it as being an array of 32 bit
4efc0c7
values. Fix for convenience.
4efc0c7
4efc0c7
Signed-off-by: Matthew Garrett <mjg@redhat.com>
4efc0c7
---
4efc0c7
 fs/hfsplus/hfsplus_raw.h |    2 +-
4efc0c7
 1 files changed, 1 insertions(+), 1 deletions(-)
4efc0c7
4efc0c7
diff --git a/fs/hfsplus/hfsplus_raw.h b/fs/hfsplus/hfsplus_raw.h
4efc0c7
index 927cdd6..921967e 100644
4efc0c7
--- a/fs/hfsplus/hfsplus_raw.h
4efc0c7
+++ b/fs/hfsplus/hfsplus_raw.h
4efc0c7
@@ -117,7 +117,7 @@ struct hfsplus_vh {
4efc0c7
 	__be32 write_count;
4efc0c7
 	__be64 encodings_bmp;
4efc0c7
 
4efc0c7
-	u8 finder_info[32];
4efc0c7
+	u32 finder_info[8];
4efc0c7
 
4efc0c7
 	struct hfsplus_fork_raw alloc_file;
4efc0c7
 	struct hfsplus_fork_raw ext_file;
4efc0c7
-- 
4efc0c7
1.7.7.1
4efc0c7
4efc0c7