selinux: use identical iterator type in hashtab_duplicate()

Use the identical type u32 for the loop iterator.

Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
[PM: remove extra whitespace in subject]
Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
Christian Göttsche 2023-07-28 17:54:53 +02:00 committed by Paul Moore
parent f01dd59045
commit c17c55c2d1
1 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,8 @@ int hashtab_duplicate(struct hashtab *new, struct hashtab *orig,
void *args)
{
struct hashtab_node *cur, *tmp, *tail;
int i, rc;
u32 i;
int rc;
memset(new, 0, sizeof(*new));