diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-06-06 11:45:03 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-06-08 19:14:24 +0200 |
commit | 10412bfccc00708663034a76b1a3c66058bb7545 (patch) | |
tree | 9ca4209b62ae12d59ac1132df296cc6b8c108512 /ext2fs | |
parent | a69c285856bec047570ce58e827333332f40c2ef (diff) |
ext2fs: fix type of retry_dotdot
* ext2fs/dir.c (diskfs_lookup_hard): Use ino_t for retry_dotdot.
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 5a298f0b..337314c1 100644 --- a/ext2fs/dir.c +++ b/ext2fs/dir.c @@ -140,7 +140,7 @@ diskfs_lookup_hard (struct node *dp, const char *name, enum lookup_type type, size_t namelen; int spec_dotdot; struct node *np = 0; - int retry_dotdot = 0; + ino_t retry_dotdot = 0; vm_prot_t prot = (type == LOOKUP) ? VM_PROT_READ : (VM_PROT_READ | VM_PROT_WRITE); memory_object_t memobj; |