From 723ce5c531a957f3ea67f6fe74d4263a35083dda Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 24 Feb 2003 03:26:49 +0000 Subject: Signed/unsigned fix from HEAD --- source/include/hash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/include/hash.h') 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; -- cgit