jpeg pushed a commit to branch master.

http://git.enlightenment.org/apps/eruler.git/commit/?id=7620f760baeea60cccb6b92573ca90201c978eca

commit 7620f760baeea60cccb6b92573ca90201c978eca
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Fri Mar 18 14:10:39 2016 +0900

    Fix warnings: shadow, unused-variable
---
 src/bin/main.c       | 4 +---
 src/bin/platform-x.c | 1 -
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/bin/main.c b/src/bin/main.c
index de52be9..0552ee3 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -424,7 +424,6 @@ _event_mouse_tracker(void *data)
      {
         int fx, fy, fw, fh, zx, zy, zw, zh, stride, iw, ih;
         unsigned int *pixels, color;
-        char buf[32];
 
         zw = zone->zoom.ideal_size.w < zone->w / 4 ?
           zone->zoom.ideal_size.w : zone->w / 4;
@@ -2492,7 +2491,6 @@ elm_main(int argc, char **argv)
    else
      {
         Eina_List *l;
-        Zone *zone;
         EINA_LIST_FOREACH(zones, l, zone)
           {
              if (!platform_funcs->zone_setup(zone))
@@ -2566,7 +2564,7 @@ elm_main(int argc, char **argv)
      {
         while (zones)
           {
-             Zone *zone = zones->data;
+             zone = zones->data;
              evas_object_del(zone->win);
           }
      }
diff --git a/src/bin/platform-x.c b/src/bin/platform-x.c
index f302f51..b7d34bf 100644
--- a/src/bin/platform-x.c
+++ b/src/bin/platform-x.c
@@ -246,7 +246,6 @@ x_post_setup(void)
 {
    const Eina_List *l;
    const Zone *zone;
-   void *ptr;
 
    if (eina_list_count(zones) > 1)
      {

-- 


Reply via email to