diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2023-08-07 19:11:41 +0200 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2023-08-09 19:07:49 -0400 |
commit | e49be9bc7c1bd1125933f42a157ca9a2812e3797 (patch) | |
tree | 8810e98326d34b42a75b42a8ac2c28661cc66389 /security | |
parent | dee15375484326a684377d6e741fc222a80a15bb (diff) |
selinux: use unsigned iterator in nlmsgtab code
Use an unsigned type as loop iterator.
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/nlmsgtab.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/selinux/nlmsgtab.c b/security/selinux/nlmsgtab.c index 2ee7b4ed43ef..8ff670cf1ee5 100644 --- a/security/selinux/nlmsgtab.c +++ b/security/selinux/nlmsgtab.c @@ -153,7 +153,8 @@ static const struct nlmsg_perm nlmsg_audit_perms[] = { static int nlmsg_perm(u16 nlmsg_type, u32 *perm, const struct nlmsg_perm *tab, size_t tabsize) { - int i, err = -EINVAL; + unsigned int i; + int err = -EINVAL; for (i = 0; i < tabsize/sizeof(struct nlmsg_perm); i++) if (nlmsg_type == tab[i].nlmsg_type) { |