missing ;

This commit is contained in:
JonDeen 2015-06-09 13:24:14 +02:00
parent 758b5ba4eb
commit 302392f801
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ vips_sRGB2HSV_line( VipsColour *colour, VipsPel *out, VipsPel **in, int width )
if (c_max == p[0]) {
q[0] = (unsigned char) (((int)(p[1] - p[2]) / delta)+wrap_around_hue);
} else if (c_max == p[1]) {
q[0] = (unsigned char) (((int)(p[2] - p[0]) / delta) + 85)
q[0] = (unsigned char) (((int)(p[2] - p[0]) / delta) + 85);
} else if (c_max == p[2]) {
q[0] = (unsigned char) (((int)(p[0] - p[1]) / delta) + 171);
}