diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-03-27 17:44:02 +0000 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2020-03-30 19:57:07 -0400 |
commit | c753924b628551564b6eea3c9896e4a95aa25ed9 (patch) | |
tree | a2ff94d46ddcb4c48a94c665b9974fb4106ddd59 /security | |
parent | 779df6a5480f1307d51b66ea72352be592265cad (diff) | |
download | linux-c753924b628551564b6eea3c9896e4a95aa25ed9.tar.bz2 |
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>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/ss/policydb.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c index 932b2b9bcdb2..70ecdc78efbd 100644 --- a/security/selinux/ss/policydb.c +++ b/security/selinux/ss/policydb.c @@ -1219,10 +1219,9 @@ static int read_cons_helper(struct policydb *p, if (rc) return rc; if (p->policyvers >= - POLICYDB_VERSION_CONSTRAINT_NAMES) { - e->type_names = kzalloc(sizeof - (*e->type_names), - GFP_KERNEL); + POLICYDB_VERSION_CONSTRAINT_NAMES) { + e->type_names = kzalloc(sizeof + (*e->type_names), GFP_KERNEL); if (!e->type_names) return -ENOMEM; type_set_init(e->type_names); |