Fix need for permissive.-------------- This line and the following will be ignored...
[m6w6/libmemcached] / libhashkit / one_at_a_time.c
index ab106f1d69e0ca111f8fcf67b7299fde529c5f7e..0c9ec31a03c37f3de6d43a33f28cdd4f9d1e022a 100644 (file)
@@ -13,10 +13,11 @@ http://en.wikipedia.org/wiki/Jenkins_hash_function
 
 #include "common.h"
 
-uint32_t hashkit_one_at_a_time(const char *key, size_t key_length)
+uint32_t hashkit_one_at_a_time(const char *key, size_t key_length, void *context)
 {
   const char *ptr= key;
   uint32_t value= 0;
+  (void)context;
 
   while (key_length--)
   {