Style changes only. Put the return type on an extra line[1] and

add an empty line at the beginning as we do not have any local
variables.

Submitted by:	rwatson [1]
Reviewed by:	rwatson
MFC after:	4 weeks
This commit is contained in:
Bjoern A. Zeeb 2008-12-10 22:10:37 +00:00
parent d16ebcd4fe
commit 36b5ba0c49

View File

@ -238,8 +238,10 @@ SYSCTL_PROC(_kern_ipc, OID_AUTO, maxsockets, CTLTYPE_INT|CTLFLAG_RW,
/* /*
* Initialise maxsockets. * Initialise maxsockets.
*/ */
static void init_maxsockets(void *ignored) static void
init_maxsockets(void *ignored)
{ {
TUNABLE_INT_FETCH("kern.ipc.maxsockets", &maxsockets); TUNABLE_INT_FETCH("kern.ipc.maxsockets", &maxsockets);
maxsockets = imax(maxsockets, imax(maxfiles, nmbclusters)); maxsockets = imax(maxsockets, imax(maxfiles, nmbclusters));
} }