Apply tizen coding rule 19/147819/1
authorHaejeong Kim <backto.kim@samsung.com>
Wed, 6 Sep 2017 01:16:23 +0000 (10:16 +0900)
committerHaejeong Kim <backto.kim@samsung.com>
Wed, 6 Sep 2017 01:16:23 +0000 (10:16 +0900)
Change-Id: I0fd8a224281dcbd692cbf40869ad865e1051a2dd

libdcm-util/dcm_image_codec.c

index 0cf333f634c36071ee668fe7b4e0e5764c3787da..02ecae50404745d8787d3df831eb019c82471c95 100755 (executable)
@@ -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;