diff options
author | Roland McGrath <roland@gnu.org> | 1998-11-29 17:17:14 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-11-29 17:17:14 +0000 |
commit | 34a9c306ed26aae53e43d3c4da37bbf6d24d4486 (patch) | |
tree | f9be08f509b5537fc7c77020b76c599ce0b0cf2a | |
parent | effc5ace378c3f586862123ffa7eedff6f66a236 (diff) |
1998-11-29 Roland McGrath <roland@baalperazim.frob.com>
* trans-callback.c (_diskfs_translator_callback1_fn): Use size_t*
instead of int* for ARGZ_LEN arg.
-rw-r--r-- | libdiskfs/trans-callback.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdiskfs/trans-callback.c b/libdiskfs/trans-callback.c index 9a78efa1..43492d6e 100644 --- a/libdiskfs/trans-callback.c +++ b/libdiskfs/trans-callback.c @@ -1,5 +1,5 @@ -/* - Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +/* + Copyright (C) 1995, 96, 97, 98 Free Software Foundation, Inc. Written by Michael I. Bushnell. This file is part of the GNU Hurd. @@ -26,7 +26,7 @@ static error_t _diskfs_translator_callback1_fn (void *cookie1, void *cookie2, uid_t *uid, gid_t *gid, - char **argz, int *argz_len) + char **argz, size_t *argz_len) { error_t err; struct node *np = cookie1; |