evas: native-tbm: remove unused variable

The variable was set but never used in this function.
This commit is contained in:
Stefan Schmidt 2016-06-20 16:07:20 +02:00
parent d5c7ce3805
commit 19ebcc02b4
1 changed files with 1 additions and 2 deletions

View File

@ -293,7 +293,7 @@ _evas_native_tbm_surface_image_set(void *data EINA_UNUSED, void *image, void *na
if (ns) if (ns)
{ {
void *pixels_data; void *pixels_data;
int w, h, stride; int h, stride;
tbm_format format; tbm_format format;
tbm_surface_info_s info; tbm_surface_info_s info;
Native *n; Native *n;
@ -318,7 +318,6 @@ _evas_native_tbm_surface_image_set(void *data EINA_UNUSED, void *image, void *na
return im; return im;
} }
w = info.width;
h = info.height; h = info.height;
stride = info.planes[0].stride; stride = info.planes[0].stride;
format = info.format; format = info.format;