diff --git a/libsrc/iofuncs/util.c b/libsrc/iofuncs/util.c index 738bb35d..616a1956 100644 --- a/libsrc/iofuncs/util.c +++ b/libsrc/iofuncs/util.c @@ -220,9 +220,9 @@ typedef struct { } Pair; static gboolean -im_hash_table_predicate( const char *key, im_type_t *type, Pair *pair ) +im_hash_table_predicate( const char *key, void *value, Pair *pair ) { - return( (pair->result == pair->fn( type, pair->a, pair->b )) ); + return( (pair->result == pair->fn( value, pair->a, pair->b )) ); } /* Like slist map, but for a hash table. diff --git a/man/IM_MACRO.3 b/man/IM_MACROS.3 similarity index 100% rename from man/IM_MACRO.3 rename to man/IM_MACROS.3