1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-01-08 10:45:04 +02:00

Missed semicolon

This commit is contained in:
DarthSim 2017-10-18 04:35:13 +06:00
parent 796addcfe8
commit f3d0b3bd2d

2
vips.h
View File

@ -139,7 +139,7 @@ vips_smartcrop_go(VipsImage *in, VipsImage **out, int width, int height) {
#if VIPS_SUPPORT_SMARTCROP
return vips_smartcrop(in, out, width, height, NULL);
#else
return 1
return 1;
#endif
}