even MORE unused vars

SVN revision: 64912
This commit is contained in:
Mike Blumenkrantz 2011-11-07 23:37:54 +00:00
parent fe4b68060e
commit 839b515b43
1 changed files with 1 additions and 2 deletions

View File

@ -172,7 +172,7 @@ _save_to(const char *file)
if (z)
{
unsigned char *src, *dst, *s, *d;
int sstd, dstd, y;
int sstd, y;
o = evas_object_image_add(evas_object_evas_get(o_img));
evas_object_image_colorspace_set(o, EVAS_COLORSPACE_ARGB8888);
@ -181,7 +181,6 @@ _save_to(const char *file)
src = evas_object_image_data_get(o_img, EINA_FALSE);
sstd = evas_object_image_stride_get(o_img);
dst = evas_object_image_data_get(o, EINA_TRUE);
dstd = evas_object_image_stride_get(o);
d = dst;
for (y = 0; y < z->h; y++)
{