svn commit: r290493 - head/sys/sys

2015-11-07 Thread Konstantin Belousov
Author: kib Date: Sat Nov 7 12:33:30 2015 New Revision: 290493 URL: https://svnweb.freebsd.org/changeset/base/290493 Log: Correct the argument type in the sysctl_add_oid(9) prototype. On ILP32 machines, intptr_t and intmax_t are different types. Submitted by: skra Modified:

Re: svn commit: r290493 - head/sys/sys

2015-11-07 Thread Conrad Meyer
Missed that instance of intptr_t, sorry. Thanks for fixing it. I think we should also s/intptr_t/intmax_t/ in SYSCTL_HANDLER_ARGS. Thanks, Conrad On Sat, Nov 7, 2015 at 4:33 AM, Konstantin Belousov wrote: > Author: kib > Date: Sat Nov 7 12:33:30 2015 > New Revision: 290493