fix a compiler warning

This commit is contained in:
John Cupitt 2020-07-14 12:56:47 +01:00
parent cc3682cb79
commit ee4610ce18
1 changed files with 3 additions and 1 deletions

View File

@ -221,8 +221,10 @@ typedef struct _VipsGsfDirectory {
static void *vips_gsf_tree_close( VipsGsfDirectory *tree );
static void *
vips_gsf_tree_close_cb( VipsGsfDirectory *tree, void *a, void *b )
vips_gsf_tree_close_cb( void *item, void *a, void *b )
{
VipsGsfDirectory *tree = (VipsGsfDirectory *) tree;
return( vips_gsf_tree_close( tree ) );
}