From d72af795ad33a43c8a9f05df4974d8fb2160b08e Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 14 Oct 2015 10:28:38 -0400 Subject: [PATCH] enlightenment: Use 'fabs' to get absolute value of floating point types Signed-off-by: Chris Michael --- src/bin/e_comp_x_randr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_x_randr.c b/src/bin/e_comp_x_randr.c index 73ff8069b..b526b24cc 100644 --- a/src/bin/e_comp_x_randr.c +++ b/src/bin/e_comp_x_randr.c @@ -399,7 +399,7 @@ _mode_screen_find(Ecore_X_Window root, E_Randr2_Screen *s, Ecore_X_Randr_Output diff = (100 * abs(s->config.mode.w - minfo->width)) + (100 * abs(s->config.mode.h - minfo->height)) + - abs((100 * s->config.mode.refresh) - (100 * refresh)); + fabs((100 * s->config.mode.refresh) - (100 * refresh)); if (diff < distance) { mode = modes[i];