ecore-drm2: Change ERR to WRN

No real need for these to be ERR because we are not going to crash if
these happen anyway.
This commit is contained in:
Christopher Michael 2020-04-20 19:31:44 -04:00
parent 0880772442
commit 92faf6a0e1
1 changed files with 2 additions and 2 deletions

View File

@ -137,10 +137,10 @@ _ecore_drm2_fb_destroy(Ecore_Drm2_Fb *fb)
{
EINA_SAFETY_ON_NULL_RETURN(fb);
if (!fb->dead) ERR("Destroying an fb that hasn't been discarded");
if (!fb->dead) WRN("Destroying an fb that hasn't been discarded");
if (fb->scanout_count)
ERR("Destroyed fb on scanout %d times.", fb->scanout_count);
WRN("Destroyed fb on scanout %d times.", fb->scanout_count);
if (fb->mmap) munmap(fb->mmap, fb->sizes[0]);