diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2015-12-29 15:38:25 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-01-04 10:29:03 -0500 |
commit | 4e728cf8ffa2891913dd48e179c132fb9fa07e0e (patch) | |
tree | 72eec0f131519f95cba682acdb02f0a0696488e1 /fs/hpfs | |
parent | 4802c5919a70661d5022710d88e311c3880cd0fd (diff) |
hpfs: missing endianness annotation
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hpfs')
-rw-r--r-- | fs/hpfs/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hpfs/map.c b/fs/hpfs/map.c index a69bbc1e87f8..a136929189f0 100644 --- a/fs/hpfs/map.c +++ b/fs/hpfs/map.c @@ -133,7 +133,7 @@ __le32 *hpfs_load_bitmap_directory(struct super_block *s, secno bmp) void hpfs_load_hotfix_map(struct super_block *s, struct hpfs_spare_block *spareblock) { struct quad_buffer_head qbh; - u32 *directory; + __le32 *directory; u32 n_hotfixes, n_used_hotfixes; unsigned i; |