summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-02-22 12:22:06 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-02-22 12:22:06 +0000
commit7e110f782a55d4dca1fb3fedd95bf059c9ec0638 (patch)
tree2e27934bd9c23ed79a80d9ea4a02396cd0516b3c /source3/include
parent0dde23a7b24edf1cbf4d7d7e5afea485e37498e5 (diff)
downloadsamba-7e110f782a55d4dca1fb3fedd95bf059c9ec0638.tar.gz
samba-7e110f782a55d4dca1fb3fedd95bf059c9ec0638.tar.bz2
samba-7e110f782a55d4dca1fb3fedd95bf059c9ec0638.zip
More signed/unsigned fixes (yes, I run with funny compiler options) and
make x_fwrite() match fwrite() in returning a size_t. Andrew Bartlett (This used to be commit 2943c695787b742e9a96b2eefe2d75f681bacf7c)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/hash.h4
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;