summaryrefslogtreecommitdiffstats
path: root/source/include/hash.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-02-24 03:26:49 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-02-24 03:26:49 +0000
commit723ce5c531a957f3ea67f6fe74d4263a35083dda (patch)
tree61c663cf498c8b6585db43309291387dbe49ae0b /source/include/hash.h
parente380224d8cd265b9845ad80af2b053a56078e790 (diff)
downloadsamba-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.h4
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;