Merge pull request #1081 from lovell/composite-cpp-sentinel
Silence 'missing sentinel' warnings in GCC v6+
This commit is contained in:
commit
f9cbc7263d
@ -1193,7 +1193,7 @@ vips_composite_base_build( VipsObject *object )
|
|||||||
if( vips_embed( in[i], &position[i],
|
if( vips_embed( in[i], &position[i],
|
||||||
composite->x_offset[i - 1],
|
composite->x_offset[i - 1],
|
||||||
composite->y_offset[i - 1],
|
composite->y_offset[i - 1],
|
||||||
width, height, NULL ) )
|
width, height, (void *) NULL ) )
|
||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
in = position;
|
in = position;
|
||||||
|
Loading…
Reference in New Issue
Block a user