summaryrefslogtreecommitdiff
path: root/sys/compat/ibcs2/ibcs2_misc.c
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2002-04-25 21:01:42 +0000
committerMarc Espie <espie@cvs.openbsd.org>2002-04-25 21:01:42 +0000
commitdc49667b7d07d55e971ece0f9a09f8a2a975c34a (patch)
treebbdf74ef6416e27111ab5640c293c82804974f7e /sys/compat/ibcs2/ibcs2_misc.c
parentffd0b27d98cda363b100a783836026ba526ace3a (diff)
unfudge size_t vs. unsigned int parameters.
Diffstat (limited to 'sys/compat/ibcs2/ibcs2_misc.c')
-rw-r--r--sys/compat/ibcs2/ibcs2_misc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/ibcs2/ibcs2_misc.c b/sys/compat/ibcs2/ibcs2_misc.c
index 70462e15189..b8c82282267 100644
--- a/sys/compat/ibcs2/ibcs2_misc.c
+++ b/sys/compat/ibcs2/ibcs2_misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ibcs2_misc.c,v 1.23 2002/03/14 03:16:03 millert Exp $ */
+/* $OpenBSD: ibcs2_misc.c,v 1.24 2002/04/25 21:01:41 espie Exp $ */
/* $NetBSD: ibcs2_misc.c,v 1.23 1997/01/15 01:37:49 perry Exp $ */
/*
@@ -694,7 +694,8 @@ ibcs2_sys_sysconf(p, v, retval)
struct ibcs2_sys_sysconf_args /* {
syscallarg(int) name;
} */ *uap = v;
- int mib[2], value, len, error;
+ int mib[2], value, error;
+ size_t len;
struct sys___sysctl_args sa;
struct sys_getrlimit_args ga;