refactor: indent style

This commit is contained in:
Tomas Aparicio 2015-03-30 02:43:24 +02:00
parent 61997bc68b
commit 5e47888d78
1 changed files with 6 additions and 6 deletions

12
vips.h
View File

@ -69,12 +69,12 @@ vips_rotate(VipsImage *in, VipsImage **buf, int angle)
int rotate = VIPS_ANGLE_D0;
if (angle == 90) {
rotate = VIPS_ANGLE_D90;
} else if (angle == 180) {
rotate = VIPS_ANGLE_D180;
} else if (angle == 270) {
rotate = VIPS_ANGLE_D270;
}
rotate = VIPS_ANGLE_D90;
} else if (angle == 180) {
rotate = VIPS_ANGLE_D180;
} else if (angle == 270) {
rotate = VIPS_ANGLE_D270;
}
return vips_rot(in, buf, rotate, NULL);
};