Signed/unsigned fix from HEAD
authorAndrew Bartlett <abartlet@samba.org>
Mon, 24 Feb 2003 03:26:49 +0000 (03:26 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 24 Feb 2003 03:26:49 +0000 (03:26 +0000)
(This used to be commit 723ce5c531a957f3ea67f6fe74d4263a35083dda)

source3/include/hash.h

index c327c971ab8186d84a1f6c5ebfb4f0301f4f3d70..40cc8b7cab3a91d5bd8539b8daed6235a576f4df 100644 (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;