diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-08 09:21:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-08 09:21:38 +0000 |
commit | 8f3e9096dd29f7bc3420e4e74db624d560ab7ebd (patch) | |
tree | abdb35f557a638ecbf6694f91cbe6b1fd7a336bb /libnetfs/append-std-options.c | |
parent | 6b1af139bf2624830573d5fbfb75b2137472a7e6 (diff) |
2002-05-07 Roland McGrath <roland@frob.com>
* fsys-getroot.c (netfs_S_fsys_getroot): Fix arg type in decl.
* append-std-options.c (netfs_append_std_options): Likewise.
Diffstat (limited to 'libnetfs/append-std-options.c')
-rw-r--r-- | libnetfs/append-std-options.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libnetfs/append-std-options.c b/libnetfs/append-std-options.c index 1590d930..e5d79631 100644 --- a/libnetfs/append-std-options.c +++ b/libnetfs/append-std-options.c @@ -1,8 +1,7 @@ /* Get standard netfs run-time options - Copyright (C) 1995, 1996 Free Software Foundation, Inc. - - Written by Miles Bader <miles@gnu.ai.mit.edu> + Copyright (C) 1995,96,2002 Free Software Foundation, Inc. + Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. @@ -25,7 +24,7 @@ /* Appends to ARGZ & ARGZ_LEN '\0'-separated options describing the standard netfs option state. */ error_t -netfs_append_std_options (char **argz, unsigned *argz_len) +netfs_append_std_options (char **argz, size_t *argz_len) { return 0; } |