Evas (gl_x11): Fix no return value in function that is supposed to

have Something returned.



SVN revision: 67063
This commit is contained in:
Christopher Michael 2012-01-11 10:34:03 +00:00
parent 2e70a02465
commit 4e103ad78c
1 changed files with 4 additions and 1 deletions

View File

@ -3470,7 +3470,10 @@ evgl_evasglCreateImage(int target, void* buffer, int *attrib_list)
attrib_list);
}
else
ERR("Invalid Engine... (Can't acccess EGL Display)\n");
{
ERR("Invalid Engine... (Can't acccess EGL Display)\n");
return NULL;
}
}
static void