summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <devilhorns@comcast.net>2020-04-20 19:31:44 -0400
committerChristopher Michael <devilhorns@comcast.net>2020-04-20 19:31:44 -0400
commit92faf6a0e17e4b6aa84ed4298c8c80733035cfd2 (patch)
tree8ba60df7781a3e6a6704ecd37972aad14ba18692
parent0880772442aa6f1c7d288a62f5a8da973f53cdeb (diff)
downloadefl-92faf6a0e17e4b6aa84ed4298c8c80733035cfd2.tar.gz
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.
-rw-r--r--src/lib/ecore_drm2/ecore_drm2_fb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_drm2/ecore_drm2_fb.c b/src/lib/ecore_drm2/ecore_drm2_fb.c
index e91cf67ec5..bc6a2cf708 100644
--- a/src/lib/ecore_drm2/ecore_drm2_fb.c
+++ b/src/lib/ecore_drm2/ecore_drm2_fb.c
@@ -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]);