diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-28 23:57:10 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-28 23:57:10 +0000 |
commit | 375500381b9ebf2a44f3fe7a23c5b9aa8be7ec61 (patch) | |
tree | 5cd3132d401b0b4cc36e63081f03f51e766dcff9 /tmpfs/tmpfs.c | |
parent | 6985c2c532aedd98cfe726091a4364998e17242b (diff) |
2002-05-28 Roland McGrath <roland@frob.com>
* dir.c (diskfs_get_directs): u_int -> size_t
* tmpfs.c (diskfs_append_args): unsigned -> size_t
Diffstat (limited to 'tmpfs/tmpfs.c')
-rw-r--r-- | tmpfs/tmpfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmpfs/tmpfs.c b/tmpfs/tmpfs.c index 6c97753a..536527f7 100644 --- a/tmpfs/tmpfs.c +++ b/tmpfs/tmpfs.c @@ -231,7 +231,7 @@ parse_opt (int key, char *arg, struct argp_state *state) /* 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; |