ecore-wl2: Fix MIN() macro comparing int vs unsigned int

@fix

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2015-12-28 09:15:01 -05:00
parent ddae80af1d
commit d91e403a98
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ _cb_global_add(void *data, struct wl_registry *registry, unsigned int id, const
if (!strcmp(interface, "wl_compositor"))
{
int request_version = 3;
unsigned int request_version = 3;
#ifdef WL_SURFACE_DAMAGE_BUFFER_SINCE_VERSION
request_version = 4;
#endif