diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 03:14:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 03:14:23 +0000 |
commit | 0d12679f6356644970af765dfcacc0c74ad69160 (patch) | |
tree | c9d662069041e2fd4c1b98c4a72af9342fa7bc35 /usr.bin/rpcgen/rpc_main.c | |
parent | 65bb3c8b8bcac580928fe9f209974ebebbfb0f26 (diff) |
unsigned vs unsigned int
Diffstat (limited to 'usr.bin/rpcgen/rpc_main.c')
-rw-r--r-- | usr.bin/rpcgen/rpc_main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/rpcgen/rpc_main.c b/usr.bin/rpcgen/rpc_main.c index 46209dbdf88..4cd435f2f75 100644 --- a/usr.bin/rpcgen/rpc_main.c +++ b/usr.bin/rpcgen/rpc_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rpc_main.c,v 1.12 2002/02/16 21:27:51 millert Exp $ */ +/* $OpenBSD: rpc_main.c,v 1.13 2002/05/27 03:14:22 deraadt Exp $ */ /* $NetBSD: rpc_main.c,v 1.9 1996/02/19 11:12:43 pk Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -32,7 +32,7 @@ #ifndef lint static char sccsid[] = "@(#)rpc_main.c 1.30 89/03/30 (C) 1987 SMI"; -static char cvsid[] = "$OpenBSD: rpc_main.c,v 1.12 2002/02/16 21:27:51 millert Exp $"; +static char cvsid[] = "$OpenBSD: rpc_main.c,v 1.13 2002/05/27 03:14:22 deraadt Exp $"; #endif /* @@ -486,9 +486,9 @@ c_initialize() char rpcgen_table_dcl[] = "struct rpcgen_table {\n\ char *(*proc)();\n\ xdrproc_t xdr_arg;\n\ - unsigned len_arg;\n\ + unsigned int len_arg;\n\ xdrproc_t xdr_res;\n\ - unsigned len_res;\n\ + unsigned int len_res;\n\ };\n"; |