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

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
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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));