remove unused variables
authorpfritz <pfritz@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 21 Aug 2008 22:11:18 +0000 (22:11 +0000)
committerpfritz <pfritz@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 21 Aug 2008 22:11:18 +0000 (22:11 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@35611 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_rectangle.c

index 023442d..57f2456 100644 (file)
@@ -4,8 +4,6 @@
 void
 evas_rects_return_difference_rects(Evas_Rectangles *rects, int x, int y, int w, int h, int xx, int yy, int ww, int hh)
 {
-   unsigned int available = 0;
-
    if (!RECTS_INTERSECT(x, y, w, h, xx, yy, ww, hh))
      {
        evas_add_rect(rects, x, y, w, h);
@@ -14,7 +12,6 @@ evas_rects_return_difference_rects(Evas_Rectangles *rects, int x, int y, int w,
    else
      {
        int x1[4], y1[4], i, j;
-       Evas_Rectangles tmp = { 0, 0, NULL };
 
        if (x < xx)
          {