diff options
| author | Roland McGrath <roland@gnu.org> | 2002-06-11 21:41:06 +0000 |
|---|---|---|
| committer | Roland McGrath <roland@gnu.org> | 2002-06-11 21:41:06 +0000 |
| commit | 0b6e196e43b7d496615d30d077df313e6642256c (patch) | |
| tree | 12812d22a6daa9621efdb19c6e7ce67ff092cfac | |
| parent | 0df695e2e07f18089ce49a5bc728dc8643ed871e (diff) | |
2002-06-08 Roland McGrath <roland@frob.com>
* inode.c (diskfs_cached_lookup): Use ino_t for argument.
| -rw-r--r-- | ufs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ufs/inode.c b/ufs/inode.c index a258ea13..a8bb661f 100644 --- a/ufs/inode.c +++ b/ufs/inode.c @@ -1,5 +1,5 @@ /* Inode management routines - Copyright (C) 1994,95,96,97,98,2000,01 Free Software Foundation, Inc. + Copyright (C) 1994,95,96,97,98,2000,01,02 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -47,7 +47,7 @@ inode_init () /* Fetch inode INUM, set *NPP to the node structure; gain one user reference and lock the node. */ error_t -diskfs_cached_lookup (int inum, struct node **npp) +diskfs_cached_lookup (ino_t inum, struct node **npp) { struct disknode *dn; struct node *np; |
