ecore-drm: Change ecore_drm_fb_set warning level

Summary: This is not actually "critical", it just means that we tried
to set a dumb buffer of the wrong size. Ecore_Evas will call this
function again after the canvas has been resized to the proper size,
so just issue a WRN here.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-04-21 13:58:41 -04:00
parent 92fc46cc16
commit 39e380f754
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ ecore_drm_fb_set(Ecore_Drm_Device *dev, Ecore_Drm_Fb *fb)
if ((fb->w != dev->dumb[0]->w) || (fb->h != dev->dumb[0]->h))
{
/* we need to copy from fb to dev->dumb */
CRIT("Trying to set a Framebuffer of improper size !!");
WRN("Trying to set a Framebuffer of improper size !!");
return;
}