diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-24 03:26:49 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-24 03:26:49 +0000 |
commit | e1d65985bef1d54546d0a40637a37d404146418f (patch) | |
tree | a1625bf119c7832c4916bc94083d07ad1f95d5c2 /source3 | |
parent | ecd7fc59a8bfad088dae158a3d53b9df13e72dfa (diff) | |
download | samba-e1d65985bef1d54546d0a40637a37d404146418f.tar.gz samba-e1d65985bef1d54546d0a40637a37d404146418f.tar.bz2 samba-e1d65985bef1d54546d0a40637a37d404146418f.zip |
Signed/unsigned fix from HEAD
(This used to be commit 723ce5c531a957f3ea67f6fe74d4263a35083dda)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/hash.h b/source3/include/hash.h index c327c971ab..40cc8b7cab 100644 --- a/source3/include/hash.h +++ b/source3/include/hash.h @@ -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; |