diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-08 10:08:00 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-08 10:08:00 +0000 |
commit | 515787ee255cca0a073ecb83e0f6df04e26fddd3 (patch) | |
tree | 9fc2af8059565f02532d6a7e0a900451038af405 /isofs/main.c | |
parent | 87a5fd33fef839b0e1ee0ee250be56f589018ad7 (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/main.c')
-rw-r--r-- | isofs/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isofs/main.c b/isofs/main.c index 37f8a007..e9b9f022 100644 --- a/isofs/main.c +++ b/isofs/main.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1997, 98, 99 Free Software Foundation, Inc. + Copyright (C) 1997,98,99,2002 Free Software Foundation, Inc. Written by Thomas Bushnell, n/BSG. This file is part of the GNU Hurd. @@ -112,7 +112,7 @@ read_sblock () /* Override the standard diskfs routine so we can add our own output. */ error_t -diskfs_append_args (char **argz, unsigned *argz_len) +diskfs_append_args (char **argz, size_t *argz_len) { error_t err; |