evas: there is no effect of variable assignment outside the function.

Summary:
Variable assigned is not used anywhere else, making it unused.
@fix

Test Plan: Na

Reviewers: raster, cedric

Reviewed By: cedric

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D5263

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Subodh Kumar 2017-10-06 09:52:41 -07:00 committed by Cedric BAIL
parent e5a588b0bf
commit 8d880d7f41
1 changed files with 1 additions and 2 deletions

View File

@ -110,7 +110,7 @@ evas_common_rgba_image_from_copied_data(Image_Entry* ie_dst, int w, int h, DATA3
}
int
evas_common_rgba_image_size_set(Image_Entry *ie_dst, const Image_Entry *ie_im, unsigned int w, unsigned int h EINA_UNUSED)
evas_common_rgba_image_size_set(Image_Entry *ie_dst, const Image_Entry *ie_im, unsigned int w EINA_UNUSED, unsigned int h EINA_UNUSED)
{
RGBA_Image *dst = (RGBA_Image *) ie_dst;
RGBA_Image *im = (RGBA_Image *) ie_im;
@ -121,7 +121,6 @@ evas_common_rgba_image_size_set(Image_Entry *ie_dst, const Image_Entry *ie_im, u
(im->cache_entry.space == EVAS_COLORSPACE_YCBCR420TM12601_PL) ||
(im->cache_entry.space == EVAS_COLORSPACE_YCBCR420NV12601_PL))
{
w &= ~0x1;
dst->cs.data = calloc(1, dst->cache_entry.h * sizeof(unsigned char *) * 2);
}