mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 07:12:52 -04:00
Style fix: space between 'switch' and '('.
This commit is contained in:
parent
12f65109c8
commit
103bcded1d
2 changed files with 2 additions and 2 deletions
|
|
@ -167,7 +167,7 @@ mac_biba_dominate_element(struct mac_biba_element *a,
|
|||
{
|
||||
int bit;
|
||||
|
||||
switch(a->mbe_type) {
|
||||
switch (a->mbe_type) {
|
||||
case MAC_BIBA_TYPE_EQUAL:
|
||||
case MAC_BIBA_TYPE_HIGH:
|
||||
return (1);
|
||||
|
|
|
|||
|
|
@ -156,7 +156,7 @@ mac_mls_dominate_element(struct mac_mls_element *a,
|
|||
{
|
||||
int bit;
|
||||
|
||||
switch(a->mme_type) {
|
||||
switch (a->mme_type) {
|
||||
case MAC_MLS_TYPE_EQUAL:
|
||||
case MAC_MLS_TYPE_HIGH:
|
||||
return (1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue