diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-06-06 11:30:26 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-06-08 19:14:24 +0200 |
commit | a69c285856bec047570ce58e827333332f40c2ef (patch) | |
tree | 359fbdafb60447fb1d14663301fb3ee511a279d1 /ext2fs | |
parent | 4bd281cdd18645a0bffde9748225569eaa85ea44 (diff) |
ext2fs: fix type of blockaddr
* ext2fs/dir.c (diskfs_lookup_hard): Use vm_address_t for blockaddr.
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/dir.c b/ext2fs/dir.c index 65adc079..5a298f0b 100644 --- a/ext2fs/dir.c +++ b/ext2fs/dir.c @@ -146,7 +146,7 @@ diskfs_lookup_hard (struct node *dp, const char *name, enum lookup_type type, memory_object_t memobj; vm_address_t buf = 0; vm_size_t buflen = 0; - int blockaddr; + vm_address_t blockaddr; int idx, lastidx; int looped; |