summaryrefslogtreecommitdiff
path: root/libnetfs/file-exec.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-08 09:21:35 +0000
committerRoland McGrath <roland@gnu.org>2002-05-08 09:21:35 +0000
commit6b1af139bf2624830573d5fbfb75b2137472a7e6 (patch)
treed79c57ee2811a5bfcc0a5d51925b624008de09e4 /libnetfs/file-exec.c
parentf68623e0f37deb741f9e8c331d898de7a28dd22b (diff)
2002-05-07 Roland McGrath <roland@frob.com>
* file-exec.c (netfs_S_file_exec): u_int -> size_t in decl. * netfs.h (netfs_append_args): unsigned -> size_t in decl.
Diffstat (limited to 'libnetfs/file-exec.c')
-rw-r--r--libnetfs/file-exec.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libnetfs/file-exec.c b/libnetfs/file-exec.c
index 9839c694..73c125ba 100644
--- a/libnetfs/file-exec.c
+++ b/libnetfs/file-exec.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1996,97,2000,01 Free Software Foundation, Inc.
+ Copyright (C) 1996,97,2000,01,02 Free Software Foundation, Inc.
Written by Michael I. Bushnell, p/BSG.
This file is part of the GNU Hurd.
@@ -35,19 +35,19 @@ netfs_S_file_exec (struct protid *cred,
task_t task,
int flags,
char *argv,
- u_int argvlen,
+ size_t argvlen,
char *envp,
- u_int envplen,
+ size_t envplen,
mach_port_t *fds,
- u_int fdslen,
+ size_t fdslen,
mach_port_t *portarray,
- u_int portarraylen,
+ size_t portarraylen,
int *intarray,
- u_int intarraylen,
+ size_t intarraylen,
mach_port_t *deallocnames,
- u_int deallocnameslen,
+ size_t deallocnameslen,
mach_port_t *destroynames,
- u_int destroynameslen)
+ size_t destroynameslen)
{
struct node *np;
error_t err;