diff options
author | gallatin <gallatin@FreeBSD.org> | 2003-10-08 18:05:59 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2003-10-08 18:05:59 +0000 |
commit | 8f2de8390a373f0018eb9a8bb4cab9e630163357 (patch) | |
tree | d32b5e1bece0c473d86b788c73f8017f46e16a1c | |
parent | bf3be14755c763435b14690d6c66d14dc1354640 (diff) | |
download | FreeBSD-src-8f2de8390a373f0018eb9a8bb4cab9e630163357.zip FreeBSD-src-8f2de8390a373f0018eb9a8bb4cab9e630163357.tar.gz |
make kernel_sysctl()'s args match its prototype in order to fix the
alpha build
-rw-r--r-- | sys/compat/linprocfs/linprocfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linprocfs/linprocfs.c b/sys/compat/linprocfs/linprocfs.c index 2791e3d..cc1eea0 100644 --- a/sys/compat/linprocfs/linprocfs.c +++ b/sys/compat/linprocfs/linprocfs.c @@ -413,7 +413,7 @@ linprocfs_domtab(PFS_FILL_ARGS) static int linprocfs_dostat(PFS_FILL_ARGS) { - unsigned int olen, plen; + size_t olen, plen; int name[2]; int i, ncpu; |