mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-28 20:44:08 +08:00
Fix build failure on non-Linux/non-Hurd/non-Masix systems
The previous fix didn't quite work, but this one should! Addresses-Sourceforge-Bug: #1861633 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
b026d539e6
commit
7132d48d83
@ -453,8 +453,8 @@ struct ext2_inode_large {
|
||||
#define inode_uid(inode) ((inode).i_uid)
|
||||
#define inode_gid(inode) ((inode).i_gid)
|
||||
#else
|
||||
#define inode_uid(inode) ((inode).i_uid | (inode).i_uid_high << 16)
|
||||
#define inode_gid(inode) ((inode).i_gid | (inode).i_gid_high << 16)
|
||||
#define inode_uid(inode) ((inode).i_uid | (inode).osd2.linux2.l_i_uid_high << 16)
|
||||
#define inode_gid(inode) ((inode).i_gid | (inode).osd2.linux2.l_i_gid_high << 16)
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user