Commit c17c55c2 authored by Christian Göttsche's avatar Christian Göttsche Committed by Paul Moore

selinux: use identical iterator type in hashtab_duplicate()

Use the identical type u32 for the loop iterator.
Signed-off-by: default avatarChristian Göttsche <cgzones@googlemail.com>
[PM: remove extra whitespace in subject]
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent f01dd590
......@@ -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));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment