Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 310004
b: refs/heads/master
c: 77ee26e
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro committed May 30, 2012
1 parent e86cdb3 commit cbcac5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 46287aa652fa8ea1edac41817ddc63332495ffc3
refs/heads/master: 77ee26e44c28823a29bc09091950544566ae7cea
4 changes: 2 additions & 2 deletions trunk/fs/hpfs/hpfs_fn.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@ static inline struct extended_attribute *next_ea(struct extended_attribute *ea)

static inline secno ea_sec(struct extended_attribute *ea)
{
return le32_to_cpu(get_unaligned((secno *)((char *)ea + 9 + ea->namelen)));
return le32_to_cpu(get_unaligned((__le32 *)((char *)ea + 9 + ea->namelen)));
}

static inline secno ea_len(struct extended_attribute *ea)
{
return le32_to_cpu(get_unaligned((secno *)((char *)ea + 5 + ea->namelen)));
return le32_to_cpu(get_unaligned((__le32 *)((char *)ea + 5 + ea->namelen)));
}

static inline char *ea_data(struct extended_attribute *ea)
Expand Down

0 comments on commit cbcac5f

Please sign in to comment.