From 1dd8edf2b73fd38b007725250cbe4dddb5aa1de6 Mon Sep 17 00:00:00 2001 From: Haejeong Kim Date: Wed, 6 Sep 2017 10:16:23 +0900 Subject: [PATCH] Apply tizen coding rule Change-Id: I0fd8a224281dcbd692cbf40869ad865e1051a2dd --- libdcm-util/dcm_image_codec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libdcm-util/dcm_image_codec.c b/libdcm-util/dcm_image_codec.c index 0cf333f..02ecae5 100755 --- a/libdcm-util/dcm_image_codec.c +++ b/libdcm-util/dcm_image_codec.c @@ -83,11 +83,11 @@ static int __dcm_rotate_image(const unsigned char *source, const dcm_image_forma rotate = IMAGE_UTIL_ROTATION_180; else if (orientation == ROT_90) rotate = IMAGE_UTIL_ROTATION_90; - else if (orientation ==ROT_270) + else if (orientation == ROT_270) rotate = IMAGE_UTIL_ROTATION_270; - else if (orientation ==HFLIP) + else if (orientation == HFLIP) rotate = IMAGE_UTIL_ROTATION_FLIP_HORZ; - else if (orientation ==VFLIP) + else if (orientation == VFLIP) rotate = IMAGE_UTIL_ROTATION_FLIP_VERT; else rotate = IMAGE_UTIL_ROTATION_NONE; -- 2.34.1