svn commit: r188061 - head/sys/kern

Warner Losh imp at FreeBSD.org
Mon Feb 2 23:53:09 PST 2009


Author: imp
Date: Tue Feb  3 07:53:08 2009
New Revision: 188061
URL: http://svn.freebsd.org/changeset/base/188061

Log:
  rman_debug should be static, so make it static.

Modified:
  head/sys/kern/subr_rman.c

Modified: head/sys/kern/subr_rman.c
==============================================================================
--- head/sys/kern/subr_rman.c	Tue Feb  3 07:52:36 2009	(r188060)
+++ head/sys/kern/subr_rman.c	Tue Feb  3 07:53:08 2009	(r188061)
@@ -99,7 +99,7 @@ struct resource_i {
 	int	r_rid;		/* optional rid for this resource. */
 };
 
-int     rman_debug = 0;
+static int     rman_debug = 0;
 TUNABLE_INT("debug.rman_debug", &rman_debug);
 SYSCTL_INT(_debug, OID_AUTO, rman_debug, CTLFLAG_RW,
     &rman_debug, 0, "rman debug");


More information about the svn-src-all mailing list