fix warnings
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 22 Jan 2010 06:51:27 +0000 (06:51 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 22 Jan 2010 06:51:27 +0000 (06:51 +0000)
patch by Albin Tonnerre

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@45430 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/evas_cserve_main.c
src/lib/canvas/evas_events.c
src/lib/canvas/evas_map.c
src/lib/canvas/evas_object_smart.c
src/lib/engines/common/evas_map_image_core.c
src/lib/engines/common/evas_map_image_internal.c

index 5882303..93c92e7 100644 (file)
@@ -1364,7 +1364,7 @@ message(void *fdata, Server *s, Client *c, int opcode, int size, unsigned char *
                          }
                        it.dead = img->dead;
                        it.useless = img->useless;
-                       DBG("...   memcpy %p %p %i ", 
+                       DBG("...   memcpy %p %p %zu ", 
                          itt, &it, sizeof(Op_Getinfo_Item));
                        memcpy(itt, &it, sizeof(Op_Getinfo_Item));
                        DBG("...   memcpy done %p", img);
index 087179a..af8f6fa 100644 (file)
@@ -1093,7 +1093,6 @@ evas_event_feed_multi_move(Evas *e,
    if (e->pointer.mouse_grabbed > 0)
      {
        /* go thru old list of in objects */
-       Eina_List *outs = NULL;
        Eina_List *l, *copy;
         Evas_Event_Multi_Move ev;
         Evas_Object *obj;
index fc556b3..6f1d1cd 100644 (file)
@@ -114,7 +114,7 @@ Eina_Bool
 evas_map_coords_get(const Evas_Map *m, Evas_Coord x, Evas_Coord y,
                     Evas_Coord *mx, Evas_Coord *my, int grab)
 {
-   int order[4], i, j, edges, edge[4][2], douv;
+   int i, j, edges, edge[4][2], douv;
    Evas_Coord xe[2];
    double u[2] = { 0.0, 0.0 };
    double v[2] = { 0.0, 0.0 };
@@ -157,8 +157,8 @@ evas_map_coords_get(const Evas_Map *m, Evas_Coord x, Evas_Coord y,
    if ((mx) || (my)) douv = 1;
    for (i = 0; i < (edges - 1); i+= 2)
      {
-        Evas_Coord yp, yd, x0, x1;
-        
+        Evas_Coord yp, yd;
+
         j = i + 1;
         yd = m->points[edge[i][1]].y - m->points[edge[i][0]].y;
         if (yd > 0)
index b697298..0cd0406 100644 (file)
@@ -496,7 +496,6 @@ EAPI Eina_Bool
 evas_object_smart_callbacks_descriptions_set(Evas_Object *obj, const Evas_Smart_Cb_Description *descriptions)
 {
    const Evas_Smart_Cb_Description *d;
-   const Evas_Smart_Cb_Description_Array *sa;
    Evas_Object_Smart *o;
    unsigned int i, count;
 
index c6c7121..e18421c 100644 (file)
@@ -9,7 +9,7 @@
           {
              int x, w, ww;
              FPc u, v, ud, vd, dv;
-             DATA32 *d, *s, *so[4], val1, val2;
+             DATA32 *d, *s;
 #ifdef COLMUL             
              FPc cv, cd, cc; // col
              DATA32 c1, c2; // col
index 2bd0555..94f129d 100644 (file)
@@ -10,7 +10,7 @@ FUNC_NAME(RGBA_Image *src, RGBA_Image *dst,
 {
    int i;
    int c, cx, cy, cw, ch;
-   int ytop, ybottom, ystart, yend, y, sw, sh, shp, swp, direct;
+   int ytop, ybottom, ystart, yend, y, sw, shp, swp, direct;
    Line *spans;
    DATA32 *buf = NULL, *sp;
    RGBA_Gfx_Func func = NULL;