vips-7.16 now builds

This commit is contained in:
John Cupitt 2008-08-24 10:19:04 +00:00
parent da46b0bac9
commit ed4834edaf
2 changed files with 2 additions and 2 deletions

View File

@ -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.