oops fix build failure

This commit is contained in:
John Cupitt 2012-07-09 17:20:58 +01:00
parent 911a1c7e71
commit 701ff1ae8d
2 changed files with 4 additions and 3 deletions

View File

@ -90,8 +90,7 @@ int vips_operation_call_valist( VipsOperation *operation, va_list ap );
VipsOperation *vips_operation_new( const char *name );
int vips_call( const char *operation_name, ... )
__attribute__((sentinel));
int vips_call_split( const char *operation_name, va_list optional, ... )
__attribute__((sentinel));
int vips_call_split( const char *operation_name, va_list optional, ... );
void vips_call_options( GOptionGroup *group, VipsOperation *operation );
int vips_call_argv( VipsOperation *operation, int argc, char **argv );

View File

@ -48,6 +48,8 @@
#include <vips/internal.h>
#include <vips/debug.h>
#include <gobject/gvaluecollector.h>
/* Our signals.
*/
enum {
@ -1811,7 +1813,7 @@ vips_object_set( VipsObject *object, ... )
va_list ap;
int result;
va_start( required, ap );
va_start( ap, object );
result = vips_object_set_valist( object, ap );
va_end( ap );