fix compiler warning about pointer targets differ in signedness

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-02-19 17:00:24 -05:00
parent 4a310cf4cf
commit 2d4db291d2
1 changed files with 2 additions and 2 deletions

View File

@ -2281,8 +2281,8 @@ _e_comp_wl_output_bind(struct wl_client *client, void *data, uint32_t version, u
wl_resource_set_user_data(resource, cdata);
EINA_LIST_FOREACH(dev->outputs, l, output)
{
int ox, oy, rw, rh, rr, pw, ph;
unsigned int spo;
int ox, oy, rw, rh, pw, ph;
unsigned int spo, rr;
const char *make, *model;
ecore_drm_output_position_get(output, &ox, &oy);