diff options
author | Christopher Michael <devilhorns@comcast.net> | 2020-04-20 19:31:44 -0400 |
---|---|---|
committer | Christopher Michael <devilhorns@comcast.net> | 2020-04-20 19:31:44 -0400 |
commit | 92faf6a0e17e4b6aa84ed4298c8c80733035cfd2 (patch) | |
tree | 8ba60df7781a3e6a6704ecd37972aad14ba18692 /src/lib/ecore_drm2 | |
parent | 0880772442aa6f1c7d288a62f5a8da973f53cdeb (diff) |
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.
Diffstat (limited to 'src/lib/ecore_drm2')
-rw-r--r-- | src/lib/ecore_drm2/ecore_drm2_fb.c | 4 |
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) | |||
137 | { | 137 | { |
138 | EINA_SAFETY_ON_NULL_RETURN(fb); | 138 | EINA_SAFETY_ON_NULL_RETURN(fb); |
139 | 139 | ||
140 | if (!fb->dead) ERR("Destroying an fb that hasn't been discarded"); | 140 | if (!fb->dead) WRN("Destroying an fb that hasn't been discarded"); |
141 | 141 | ||
142 | if (fb->scanout_count) | 142 | if (fb->scanout_count) |
143 | ERR("Destroyed fb on scanout %d times.", fb->scanout_count); | 143 | WRN("Destroyed fb on scanout %d times.", fb->scanout_count); |
144 | 144 | ||
145 | if (fb->mmap) munmap(fb->mmap, fb->sizes[0]); | 145 | if (fb->mmap) munmap(fb->mmap, fb->sizes[0]); |
146 | 146 | ||