From 4318fe1254c23257fd96224b5d74a71a38330df5 Mon Sep 17 00:00:00 2001 From: Ali Alzyod Date: Tue, 10 Dec 2019 12:02:54 -0500 Subject: [PATCH] ector: Fix build warning about unused variable Reviewers: bu5hm4n, Hermet, devilhorns Reviewed By: devilhorns Subscribers: devilhorns, cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D10851 --- src/lib/ector/software/ector_software_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ector/software/ector_software_buffer.c b/src/lib/ector/software/ector_software_buffer.c index d6de02f4e7..62dae2c50b 100644 --- a/src/lib/ector/software/ector_software_buffer.c +++ b/src/lib/ector/software/ector_software_buffer.c @@ -64,7 +64,7 @@ _ector_software_buffer_base_pixels_clear(Eo *obj EINA_UNUSED, Ector_Software_Buf } EOLIAN static Eina_Bool -_ector_software_buffer_base_ector_buffer_pixels_get(Eo *obj, Ector_Software_Buffer_Base_Data *pd, +_ector_software_buffer_base_ector_buffer_pixels_get(Eo *obj EINA_UNUSED, Ector_Software_Buffer_Base_Data *pd, void **pixels, int* width, int* height, int* stride) { if (*pixels) *pixels = pd->pixels.u8;