Don't need a prev ptr in this list.
authorBrenden Matthews <brenden@rty.ca>
Mon, 18 May 2009 21:49:40 +0000 (15:49 -0600)
committerBrenden Matthews <brenden@rty.ca>
Mon, 18 May 2009 21:49:40 +0000 (15:49 -0600)
src/imlib2.c

index ff564fd..750c453 100644 (file)
@@ -35,7 +35,6 @@ struct image_list_s {
        Imlib_Image image;
        int x, y, w, h;
        int wh_set;
-       struct image_list_s *prev;
        struct image_list_s *next;
 };
 
@@ -106,7 +105,6 @@ void cimlib_add_image(const char *args)
 
        if (image_list_end) {
                image_list_end->next = cur;
-               cur->prev = image_list_end;
                image_list_end = cur;
        } else {
                image_list_start = image_list_end = cur;