From ff8ec789a04e41c92eba167d36ae4aad46447f31 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Sun, 10 Jun 2012 17:54:58 +0100 Subject: [PATCH] oops fix compile break --- libvips/iofuncs/object.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libvips/iofuncs/object.c b/libvips/iofuncs/object.c index e3537d8a..0add3a6b 100644 --- a/libvips/iofuncs/object.c +++ b/libvips/iofuncs/object.c @@ -349,9 +349,6 @@ void * vips_argument_map( VipsObject *object, VipsArgumentMapFn fn, void *a, void *b ) { - VipsObjectClass *object_class = VIPS_OBJECT_GET_CLASS( object ); - GSList *p; - /* Make sure we can't go during the loop. This can happen if eg. we * flush an arg that refs us. */ @@ -370,7 +367,7 @@ vips_argument_map( VipsObject *object, g_object_unref( object ); return( result ); } - } + } VIPS_ARGUMENT_FOR_ALL_END g_object_unref( object );