From 5e47888d789c678c95c5b9b0bfb778f7c8006cae Mon Sep 17 00:00:00 2001 From: Tomas Aparicio Date: Mon, 30 Mar 2015 02:43:24 +0200 Subject: [PATCH] refactor: indent style --- vips.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vips.h b/vips.h index 04eb31e..9990c3d 100644 --- a/vips.h +++ b/vips.h @@ -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); };