mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Get rid of warnings, there's no need to do preprocessor concatination of
things with commas and equal signs.
This commit is contained in:
parent
9c85a5ca25
commit
5e8176f9cb
1 changed files with 2 additions and 2 deletions
|
|
@ -51,9 +51,9 @@
|
|||
SYSCTL_NODE(_kern, OID_AUTO, lomac, CTLFLAG_RW, 0, "LOMAC");
|
||||
SYSCTL_NODE(_kern_lomac, OID_AUTO, verbose, CTLFLAG_RW, 0, "LOMAC verbosity");
|
||||
#define VERBOSITY_SETTING(level) \
|
||||
unsigned int lomac_verbose_##level## = 1; \
|
||||
unsigned int lomac_verbose_##level = 1; \
|
||||
SYSCTL_UINT(_kern_lomac_verbose, OID_AUTO, level, \
|
||||
CTLFLAG_RW, &lomac_verbose_##level##, 1, "")
|
||||
CTLFLAG_RW, &lomac_verbose_##level, 1, "")
|
||||
#include "kernel_log.h"
|
||||
|
||||
/* sbuf_start()
|
||||
|
|
|
|||
Loading…
Reference in a new issue