1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Signed/unsigned fix from HEAD

This commit is contained in:
Andrew Bartlett 0001-01-01 00:00:00 +00:00
parent e380224d8c
commit 723ce5c531

View File

@ -66,8 +66,8 @@ typedef struct hash_element {
typedef struct hash_table {
ubi_dlList *buckets;
ubi_dlList lru_chain;
int num_elements;
int size;
unsigned num_elements;
unsigned size;
compare_function comp_func;
} hash_table;