diff options
author | Matthew Garrett <mjg@redhat.com> | 2012-02-02 15:39:50 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-20 21:29:52 -0400 |
commit | 0347b6e95ceeb648631f89a0ced001e90e4daaa9 (patch) | |
tree | d9af87bb6280d935f9ba628899e8494d25de7c81 /fs/hfsplus | |
parent | f3922382ce930e76773fb06416a7a6081a8702ad (diff) |
hfsplus: change finder_info to u32
The finder_info block in the hfsplus volume header is currently defined as
an array of 8 bit values, but TN1150 defines it as being an array of 32 bit
values. Fix for convenience.
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hfsplus')
-rw-r--r-- | fs/hfsplus/hfsplus_raw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hfsplus/hfsplus_raw.h b/fs/hfsplus/hfsplus_raw.h index 927cdd6d5bf5..921967e5abb1 100644 --- a/fs/hfsplus/hfsplus_raw.h +++ b/fs/hfsplus/hfsplus_raw.h | |||
@@ -117,7 +117,7 @@ struct hfsplus_vh { | |||
117 | __be32 write_count; | 117 | __be32 write_count; |
118 | __be64 encodings_bmp; | 118 | __be64 encodings_bmp; |
119 | 119 | ||
120 | u8 finder_info[32]; | 120 | u32 finder_info[8]; |
121 | 121 | ||
122 | struct hfsplus_fork_raw alloc_file; | 122 | struct hfsplus_fork_raw alloc_file; |
123 | struct hfsplus_fork_raw ext_file; | 123 | struct hfsplus_fork_raw ext_file; |