Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b7a84dea authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by Paul Moore
Browse files

audit: remove unnecessary semicolon in audit_field_valid()



The excess ; after the closing parenthesis is just code-noise it has no
and can be removed.

Signed-off-by: default avatarNicholas Mc Guire <der.herr@hofr.at>
[PM: tweak subject line]
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent a351e9b9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -338,7 +338,7 @@ static int audit_field_valid(struct audit_entry *entry, struct audit_field *f)
		    entry->rule.listnr != AUDIT_FILTER_USER)
			return -EINVAL;
		break;
	};
	}

	switch(f->type) {
	default:
@@ -412,7 +412,7 @@ static int audit_field_valid(struct audit_entry *entry, struct audit_field *f)
		if (entry->rule.listnr != AUDIT_FILTER_EXIT)
			return -EINVAL;
		break;
	};
	}
	return 0;
}