raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=48023b9ce37c0802234bd2c6ccae02d46046aa11
commit 48023b9ce37c0802234bd2c6ccae02d46046aa11 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Sat Nov 29 16:44:41 2014 +0900 e randr - fix warning (signed vs unsigned cmp) --- src/bin/e_randr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_randr.c b/src/bin/e_randr.c index 3b88ab9..a7b76ea 100644 --- a/src/bin/e_randr.c +++ b/src/bin/e_randr.c @@ -366,7 +366,7 @@ _e_randr_output_edid_string_get(Ecore_X_Window root, Ecore_X_Randr_Output output edid = ecore_x_randr_output_edid_get(root, output, &edid_len); if (edid) { - int k, kk; + unsigned int k, kk; edid_str = malloc((edid_len * 2) + 1); if (edid_str) --
