mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Add brace missing in r254253.
This commit is contained in:
parent
32373512c3
commit
fe97b88c15
1 changed files with 1 additions and 1 deletions
|
|
@ -308,7 +308,7 @@ mpssas_log_command(struct mps_command *cm, u_int level, const char *fmt, ...)
|
|||
return;
|
||||
|
||||
/* No need to be in here if debugging isn't enabled */
|
||||
if (cm->cm_sc->mps_debug & level) == 0)
|
||||
if ((cm->cm_sc->mps_debug & level) == 0)
|
||||
return;
|
||||
|
||||
sbuf_new(&sb, str, sizeof(str), 0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue