Update vips.c
When compiling from source on Ubuntu we get an error:
# github.com/imgproxy/imgproxy/v3/vips
vips.c: In function ‘vips_fix_float_tiff’:
vips.c:247:3: warning: not enough variable arguments to fit a sentinel [-Wformat=]
247 | return vips_copy(in, out);
| ^~~~~~
vips_copy has more arguments and call needs to be terminated with null pointer.
This fixes that problem.