Skip to content

Commit d99a189

Browse files
committed
missing cast
1 parent dd503c0 commit d99a189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libvips/iofuncs/type.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1579,7 +1579,7 @@ vips_value_set_blob_free( GValue *value, void *data, size_t length )
15791579

15801580
g_assert( G_VALUE_TYPE( value ) == VIPS_TYPE_BLOB );
15811581

1582-
blob = vips_blob_new( g_free, data, length );
1582+
blob = vips_blob_new( (VipsCallbackFn) g_free, data, length );
15831583
g_value_set_boxed( value, blob );
15841584
vips_area_unref( VIPS_AREA( blob ) );
15851585
}

0 commit comments

Comments
 (0)