silence a clang warning

This commit is contained in:
John Cupitt 2016-01-09 14:51:35 +00:00
parent 9419e07a6b
commit 3be5af9779

View File

@ -220,6 +220,13 @@ vips_arrayjoin_build( VipsObject *object )
int left, top;
int width, height;
/* Keep clang quiet about used-before-set.
*/
left = 0;
top = 0;
width = 0;
height = 0;
switch( join->halign ) {
case VIPS_ALIGN_LOW:
left = 0;