summaryrefslogtreecommitdiff
path: root/libtrivfs
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-09-23 21:23:42 +0000
committerMiles Bader <miles@gnu.org>1996-09-23 21:23:42 +0000
commitc965c6b3617d006813f2c4138dfff6a16d73e1bb (patch)
treea52078cc1df85f94e56af600ecb40a407f5b2c1d /libtrivfs
parent2ae206744a2a4b193b4d3438c260590d3c8cd272 (diff)
(trivfs_append_args): Make ARGZ_LEN `size_t *'.
Diffstat (limited to 'libtrivfs')
-rw-r--r--libtrivfs/append-args.c2
-rw-r--r--libtrivfs/trivfs.h2
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__ */