rman_debug should be static, so make it static.

This commit is contained in:
Warner Losh 2009-02-03 07:53:08 +00:00
parent bada728732
commit 8ed4d9c970
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=188061

View File

@ -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");