From 92faf6a0e17e4b6aa84ed4298c8c80733035cfd2 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Mon, 20 Apr 2020 19:31:44 -0400 Subject: [PATCH] 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. --- src/lib/ecore_drm2/ecore_drm2_fb.c | 4 ++-- 1 file 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]);