diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index 0ad705777..08ff2f360 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -606,24 +606,24 @@ e_pixmap_image_clear(E_Pixmap *cp, Eina_Bool cache) break; case E_PIXMAP_TYPE_WL: #if defined(HAVE_WAYLAND_CLIENTS) || defined(HAVE_WAYLAND_ONLY) - { - E_Comp_Wl_Client_Data *cd; - struct wl_resource *cb; + { + E_Comp_Wl_Client_Data *cd; + struct wl_resource *cb; - if ((!cp->client) || (!cp->client->comp_data)) return; - cd = (E_Comp_Wl_Client_Data*)cp->client->comp_data; - EINA_LIST_FREE(cd->frames, cb) - { - wl_callback_send_done(cb, (ecore_loop_time_get() * 1000)); - wl_resource_destroy(cb); - } + if ((!cp->client) || (!cp->client->comp_data)) return; + cd = (E_Comp_Wl_Client_Data*)cp->client->comp_data; + EINA_LIST_FREE(cd->frames, cb) + { + wl_callback_send_done(cb, (ecore_loop_time_get() * 1000)); + wl_resource_destroy(cb); + } - /* post a buffer release */ - /* TODO: FIXME: We need a way to determine if the client wants to - * keep the buffer or not. If so, then we should Not be setting NULL - * here as this will essentially release the buffer */ - e_comp_wl_buffer_reference(&cd->buffer_ref, NULL); - } + /* post a buffer release */ + /* TODO: FIXME: We need a way to determine if the client wants to + * keep the buffer or not. If so, then we should Not be setting NULL + * here as this will essentially release the buffer */ + e_comp_wl_buffer_reference(&cd->buffer_ref, NULL); + } #endif break; default: