diff options
author | Roland McGrath <roland@gnu.org> | 2002-06-13 20:57:22 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-06-13 20:57:22 +0000 |
commit | 6069da779f763df800ebbcec348b985ecc972a78 (patch) | |
tree | 1e777b0d8d355261397bf2a3e24f78f11f5fe82d /tmpfs | |
parent | 4e530972c2ff0bdc240093f0282c650c7562cd3a (diff) |
2002-06-13 Roland McGrath <roland@frob.com>
* dir.c (diskfs_lookup_hard): int -> ino_t
Diffstat (limited to 'tmpfs')
-rw-r--r-- | tmpfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmpfs/dir.c b/tmpfs/dir.c index 1a93cdda..2e554104 100644 --- a/tmpfs/dir.c +++ b/tmpfs/dir.c @@ -198,7 +198,7 @@ diskfs_lookup_hard (struct node *dp, else { mutex_unlock (&dp->lock); - err = diskfs_cached_lookup ((int) dddn, np); + err = diskfs_cached_lookup ((ino_t) dddn, np); if (type == (LOOKUP|SPEC_DOTDOT)) diskfs_nrele (dp); |