From: Junkyeong Kim Date: Fri, 7 Feb 2020 06:37:57 +0000 (+0900) Subject: e_output: fix value type error X-Git-Tag: submit/tizen/20200207.063847^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F30%2F224230%2F1;p=platform%2Fupstream%2Fenlightenment.git e_output: fix value type error Change-Id: I662d5298c3862f8f4b1871eae5808d8a28cfa0ae Signed-off-by: Junkyeong Kim --- diff --git a/src/bin/e_output.c b/src/bin/e_output.c index cde1ab91ca..f31a651371 100644 --- a/src/bin/e_output.c +++ b/src/bin/e_output.c @@ -320,7 +320,7 @@ _e_output_zoom_coordinate_cal(E_Output *output) { int x = 0, y = 0; int w = 0, h = 0; - int zoomx = 0, zoomy = 0; + double zoomx = 0, zoomy = 0; int rotation_diff = 0; rotation_diff = (360 + output->zoom_conf.current_screen_rotation - output->zoom_conf.init_screen_rotation) % 360;