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 | 723ce5c531a957f3ea67f6fe74d4263a35083dda (patch) | |
tree | 61c663cf498c8b6585db43309291387dbe49ae0b /source/include/hash.h | |
parent | e380224d8cd265b9845ad80af2b053a56078e790 (diff) | |
download | samba-723ce5c531a957f3ea67f6fe74d4263a35083dda.tar.gz samba-723ce5c531a957f3ea67f6fe74d4263a35083dda.tar.xz samba-723ce5c531a957f3ea67f6fe74d4263a35083dda.zip |
Signed/unsigned fix from HEAD
Diffstat (limited to 'source/include/hash.h')
-rw-r--r-- | source/include/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/include/hash.h b/source/include/hash.h index c327c971ab8..40cc8b7cab3 100644 --- a/source/include/hash.h +++ b/source/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; |