discomfitor pushed a commit to branch enlightenment-0.19. http://git.enlightenment.org/core/enlightenment.git/commit/?id=b65654618467aefc826f63ceda2a7d4fd986e1a2
commit b65654618467aefc826f63ceda2a7d4fd986e1a2 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 03b2722..550224c 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) --
