Evas engine gl_x11: Fixed signed, unsigned comparison.

This commit is contained in:
Tom Hacohen 2013-04-18 12:42:06 +01:00
parent e5065da29c
commit 8b6c9449fb
1 changed files with 1 additions and 1 deletions

View File

@ -2192,7 +2192,7 @@ eng_image_native_set(void *data, void *image, void *native)
{
glXGetFBConfigAttrib(re->win->disp, configs[j],
GLX_BUFFER_SIZE, &val);
if (val != depth) continue;
if (val != (int) depth) continue;
}
glXGetFBConfigAttrib(re->win->disp, configs[j],
GLX_DRAWABLE_TYPE, &val);