Commit c753924b authored by Colin Ian King's avatar Colin Ian King Committed by Paul Moore
Browse files

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent 779df6a5
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -1221,8 +1221,7 @@ static int read_cons_helper(struct policydb *p,
				if (p->policyvers >=
				    POLICYDB_VERSION_CONSTRAINT_NAMES) {
					e->type_names = kzalloc(sizeof
						(*e->type_names),
						GFP_KERNEL);
						(*e->type_names), GFP_KERNEL);
					if (!e->type_names)
						return -ENOMEM;
					type_set_init(e->type_names);