aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/shot/e_mod_main.c
diff options
context:
space:
mode:
authorMike Blumenkrantz <michael.blumenkrantz@gmail.com>2011-11-07 23:37:54 +0000
committerMike Blumenkrantz <michael.blumenkrantz@gmail.com>2011-11-07 23:37:54 +0000
commit839b515b432fc2e3f4b770c74db83cd1957f403b (patch)
tree59fc05119172d92c3f534e6c9ee7fd25a1426e5e /src/modules/shot/e_mod_main.c
parentfe4b68060e4b5020242c36b69a00f69ad7764b91 (diff)
downloadenlightenment-839b515b432fc2e3f4b770c74db83cd1957f403b.tar.gz
enlightenment-839b515b432fc2e3f4b770c74db83cd1957f403b.tar.xz
enlightenment-839b515b432fc2e3f4b770c74db83cd1957f403b.zip
even MORE unused vars
SVN revision: 64912
Diffstat (limited to 'src/modules/shot/e_mod_main.c')
-rw-r--r--src/modules/shot/e_mod_main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/shot/e_mod_main.c b/src/modules/shot/e_mod_main.c
index 80b49053e..0941876cd 100644
--- a/src/modules/shot/e_mod_main.c
+++ b/src/modules/shot/e_mod_main.c
@@ -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++)
{