diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-28 23:56:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-28 23:56:34 +0000 |
commit | 25b39daa9074d851dd75ea87640ffeb7808c61f0 (patch) | |
tree | c20c984f230041e76fef4643b451a4dbdf971a49 /utils/fsysopts.c | |
parent | 5cd8d4c8112c82457677bcf7eb92ab2cddad930d (diff) | |
download | hurd-25b39daa9074d851dd75ea87640ffeb7808c61f0.tar.gz hurd-25b39daa9074d851dd75ea87640ffeb7808c61f0.tar.bz2 hurd-25b39daa9074d851dd75ea87640ffeb7808c61f0.zip |
2002-05-28 Roland McGrath <roland@frob.com>
* pids.c (add_fn_pids): unsigned -> size_t
* w.c (add_utmp_procs): Likewise.
* login.c (add_canonical_host): Likewise.
* ps.c (main): Likewise.
* login.c (add_entry, main): Likewise.
* settrans.c (main): int -> size_t
* showtrans.c (main): Likewise.
* fsysopts.c (main): Likewise.
* vmstat.c (main): Use int for FWIDTHS.
* ping.c (main): size_t -> socklen_t
* fakeauth.c (S_auth_getids, S_auth_makeauth,
S_auth_server_authenticate): u_int -> size_t
* showtrans.c (main): Cast field width/precision args to int.
Diffstat (limited to 'utils/fsysopts.c')
-rw-r--r-- | utils/fsysopts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/fsysopts.c b/utils/fsysopts.c index 79e40979..f8b4c03d 100644 --- a/utils/fsysopts.c +++ b/utils/fsysopts.c @@ -1,8 +1,8 @@ /* Set options in a running filesystem - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995,96,97,98,2002 Free Software Foundation, Inc. - Written by Miles Bader <miles@gnu.ai.mit.edu> + Written by Miles Bader <miles@gnu.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -60,7 +60,7 @@ main(int argc, char *argv[]) /* The filesystem options vector, in '\0' separated format. */ char *argz = 0; - int argz_len = 0; + size_t argz_len = 0; int deref = 0, recursive = 0; |