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 <colin.king@canonical.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
parent
779df6a548
commit
c753924b62
|
@ -1219,10 +1219,9 @@ static int read_cons_helper(struct policydb *p,
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
if (p->policyvers >=
|
if (p->policyvers >=
|
||||||
POLICYDB_VERSION_CONSTRAINT_NAMES) {
|
POLICYDB_VERSION_CONSTRAINT_NAMES) {
|
||||||
e->type_names = kzalloc(sizeof
|
e->type_names = kzalloc(sizeof
|
||||||
(*e->type_names),
|
(*e->type_names), GFP_KERNEL);
|
||||||
GFP_KERNEL);
|
|
||||||
if (!e->type_names)
|
if (!e->type_names)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
type_set_init(e->type_names);
|
type_set_init(e->type_names);
|
||||||
|
|
Loading…
Reference in New Issue