dmabuf: Make failure a DBG instead of an ERR

It's not really an error - fallback to shm will be attempted.
This commit is contained in:
Derek Foreman 2017-01-09 08:30:25 -06:00
parent bd2f189d4c
commit 24b277a040
1 changed files with 1 additions and 1 deletions

View File

@ -802,7 +802,7 @@ _evas_dmabuf_surface_create(Surface *s, int w, int h, int num_buff)
surf->buffer[i] = _evas_dmabuf_buffer_init(surf, w, h);
if (!surf->buffer[i])
{
ERR("Could not create buffers");
DBG("Could not create buffers");
/* _init() handled surface cleanup when it failed */
return EINA_FALSE;
}