From 26adc3cdc75815533fe47f978d6fa04d8562b643 Mon Sep 17 00:00:00 2001 From: Georgi Kodinov Date: Fri, 20 Mar 2009 13:35:00 +0200 Subject: [PATCH] Fixed a prototype to match the actual function signature (addendum to the fix for 29125). --- mysys/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysys/hash.c b/mysys/hash.c index 0b44782aeb5..e7b5352af34 100644 --- a/mysys/hash.c +++ b/mysys/hash.c @@ -33,7 +33,7 @@ typedef struct st_hash_info { uchar *data; /* data for current entry */ } HASH_LINK; -static uint my_hash_mask(uint hashnr, uint buffmax, uint maxlength); +static uint my_hash_mask(size_t hashnr, size_t buffmax, size_t maxlength); static void movelink(HASH_LINK *array,uint pos,uint next_link,uint newlink); static int hashcmp(const HASH *hash, HASH_LINK *pos, const uchar *key, size_t length);