mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
selinux: fix implicit conversions in the symtab
hashtab_init() takes an u32 as size parameter type. Signed-off-by: Christian Göttsche <cgzones@googlemail.com> [PM: subject line tweaks] Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
parent
7128578c79
commit
0e83c9c6fb
@ -37,7 +37,7 @@ static const struct hashtab_key_params symtab_key_params = {
|
||||
.cmp = symcmp,
|
||||
};
|
||||
|
||||
int symtab_init(struct symtab *s, unsigned int size)
|
||||
int symtab_init(struct symtab *s, u32 size)
|
||||
{
|
||||
s->nprim = 0;
|
||||
return hashtab_init(&s->table, size);
|
||||
|
@ -17,7 +17,7 @@ struct symtab {
|
||||
u32 nprim; /* number of primary names in table */
|
||||
};
|
||||
|
||||
int symtab_init(struct symtab *s, unsigned int size);
|
||||
int symtab_init(struct symtab *s, u32 size);
|
||||
|
||||
int symtab_insert(struct symtab *s, char *name, void *datum);
|
||||
void *symtab_search(struct symtab *s, const char *name);
|
||||
|
Loading…
Reference in New Issue
Block a user