e randr - fix warning (signed vs unsigned cmp)

This commit is contained in:
Carsten Haitzler 2014-11-29 16:44:41 +09:00 committed by Mike Blumenkrantz
parent b84c0fe11d
commit b656546184
1 changed files with 1 additions and 1 deletions

View File

@ -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)