diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-12-04 03:58:56 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-12-04 03:58:56 +0000 |
commit | 1d67e90f19a7acfd9a05dc59678e7d0c5090bd0d (patch) | |
tree | 357efc7b93f8f5102110d20d293f41360ec212fc /fs/udf | |
parent | aea27b2e18d69af87e673972246e66657b4fa274 (diff) |
Merge with Linux 2.3.21.
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/inode.c b/fs/udf/inode.c index 5e0aa576e..3cb450036 100644 --- a/fs/udf/inode.c +++ b/fs/udf/inode.c @@ -917,7 +917,7 @@ static void udf_fill_inode(struct inode *inode, struct buffer_head *bh) inode->i_size = le64_to_cpu(fe->informationLength); #if BITS_PER_LONG < 64 - if (le64_to_cpu(fe->informationLength) & 0xFFFFFFFF00000000) + if (le64_to_cpu(fe->informationLength) & 0xFFFFFFFF00000000ULL) inode->i_size = (Uint32)-1; #endif |