summaryrefslogtreecommitdiff
path: root/isofs/lookup.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-08 10:08:00 +0000
committerRoland McGrath <roland@gnu.org>2002-05-08 10:08:00 +0000
commit515787ee255cca0a073ecb83e0f6df04e26fddd3 (patch)
tree9fc2af8059565f02532d6a7e0a900451038af405 /isofs/lookup.c
parent87a5fd33fef839b0e1ee0ee250be56f589018ad7 (diff)
2002-05-08 Roland McGrath <roland@frob.com>
* main.c (diskfs_append_args): unsigned -> size_t * lookup.c (diskfs_get_directs): Likewise.
Diffstat (limited to 'isofs/lookup.c')
-rw-r--r--isofs/lookup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/isofs/lookup.c b/isofs/lookup.c
index fff7c64d..f3e7581f 100644
--- a/isofs/lookup.c
+++ b/isofs/lookup.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1997,98,99,2001 Free Software Foundation, Inc.
+ Copyright (C) 1997,98,99,2001,02 Free Software Foundation, Inc.
Written by Thomas Bushnell, n/BSG.
This file is part of the GNU Hurd.
@@ -221,7 +221,7 @@ diskfs_get_directs (struct node *dp,
int entry,
int nentries,
char **data,
- u_int *datacnt,
+ size_t *datacnt,
vm_size_t bufsiz,
int *amt)
{
@@ -333,7 +333,7 @@ diskfs_get_directs (struct node *dp,
if (datap - *data + reclen > allocsize)
{
vm_address_t newdata;
-
+
vm_allocate (mach_task_self (), &newdata,
(ouralloc
? (allocsize *= 2)