Skip to content

Commit c753924

Browse files
Colin Ian Kingpcmoore
authored andcommitted
selinux: clean up indentation issue with assignment statement
The assignment of e->type_names is indented one level too deep, clean this up by removing the extraneous tab. Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Paul Moore <[email protected]>
1 parent 779df6a commit c753924

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

security/selinux/ss/policydb.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,10 +1219,9 @@ static int read_cons_helper(struct policydb *p,
12191219
if (rc)
12201220
return rc;
12211221
if (p->policyvers >=
1222-
POLICYDB_VERSION_CONSTRAINT_NAMES) {
1223-
e->type_names = kzalloc(sizeof
1224-
(*e->type_names),
1225-
GFP_KERNEL);
1222+
POLICYDB_VERSION_CONSTRAINT_NAMES) {
1223+
e->type_names = kzalloc(sizeof
1224+
(*e->type_names), GFP_KERNEL);
12261225
if (!e->type_names)
12271226
return -ENOMEM;
12281227
type_set_init(e->type_names);

0 commit comments

Comments
 (0)