oops fix build failure
This commit is contained in:
parent
911a1c7e71
commit
701ff1ae8d
@ -90,8 +90,7 @@ int vips_operation_call_valist( VipsOperation *operation, va_list ap );
|
|||||||
VipsOperation *vips_operation_new( const char *name );
|
VipsOperation *vips_operation_new( const char *name );
|
||||||
int vips_call( const char *operation_name, ... )
|
int vips_call( const char *operation_name, ... )
|
||||||
__attribute__((sentinel));
|
__attribute__((sentinel));
|
||||||
int vips_call_split( const char *operation_name, va_list optional, ... )
|
int vips_call_split( const char *operation_name, va_list optional, ... );
|
||||||
__attribute__((sentinel));
|
|
||||||
|
|
||||||
void vips_call_options( GOptionGroup *group, VipsOperation *operation );
|
void vips_call_options( GOptionGroup *group, VipsOperation *operation );
|
||||||
int vips_call_argv( VipsOperation *operation, int argc, char **argv );
|
int vips_call_argv( VipsOperation *operation, int argc, char **argv );
|
||||||
|
@ -48,6 +48,8 @@
|
|||||||
#include <vips/internal.h>
|
#include <vips/internal.h>
|
||||||
#include <vips/debug.h>
|
#include <vips/debug.h>
|
||||||
|
|
||||||
|
#include <gobject/gvaluecollector.h>
|
||||||
|
|
||||||
/* Our signals.
|
/* Our signals.
|
||||||
*/
|
*/
|
||||||
enum {
|
enum {
|
||||||
@ -1811,7 +1813,7 @@ vips_object_set( VipsObject *object, ... )
|
|||||||
va_list ap;
|
va_list ap;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
va_start( required, ap );
|
va_start( ap, object );
|
||||||
result = vips_object_set_valist( object, ap );
|
result = vips_object_set_valist( object, ap );
|
||||||
va_end( ap );
|
va_end( ap );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user