diff options
author | Miles Bader <miles@gnu.org> | 1996-09-23 21:23:42 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-09-23 21:23:42 +0000 |
commit | c965c6b3617d006813f2c4138dfff6a16d73e1bb (patch) | |
tree | a52078cc1df85f94e56af600ecb40a407f5b2c1d | |
parent | 2ae206744a2a4b193b4d3438c260590d3c8cd272 (diff) |
(trivfs_append_args): Make ARGZ_LEN `size_t *'.
-rw-r--r-- | libtrivfs/append-args.c | 2 | ||||
-rw-r--r-- | libtrivfs/trivfs.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libtrivfs/append-args.c b/libtrivfs/append-args.c index 7d927dfa..d5c3d4a3 100644 --- a/libtrivfs/append-args.c +++ b/libtrivfs/append-args.c @@ -24,7 +24,7 @@ list of the arguments to this translator. */ error_t trivfs_append_args (struct trivfs_control *fsys, - char **argz, unsigned *argz_len) + char **argz, size_t *argz_len) { return EOPNOTSUPP; } diff --git a/libtrivfs/trivfs.h b/libtrivfs/trivfs.h index fc6a1c72..9f2fc5f5 100644 --- a/libtrivfs/trivfs.h +++ b/libtrivfs/trivfs.h @@ -198,6 +198,6 @@ error_t trivfs_set_options (struct trivfs_control *fsys, list of the arguments to this translator. The default definition of this routine simply calls diskfs_append_std_options. */ error_t trivfs_append_args (struct trivfs_control *fsys, - char **argz, unsigned *argz_len); + char **argz, size_t *argz_len); #endif /* __TRIVFS_H__ */ |