Difference for random_maps/style.c from version 1.13 to 1.14


version 1.13 version 1.14
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_style_c =   * static char *rcsid_style_c =
  *   "$Id: style.c,v 1.13 2001/05/08 07:11:26 mwedel Exp $";   *   "$Id: style.c,v 1.14 2001/05/13 08:21:54 mwedel Exp $";
  */   */
   
 /*  /*
Line 288
 
Line 288
 }  }
    
    
   void free_style_maps()
   {
       mapstruct *next;
       int  style_maps=0;
      
       /* delete_map will try to free it from the linked list,
        * but won't find it, so we need to do it ourselves
        */
       while (styles) {
    next = styles->next;
    delete_map(styles);
    styles=next;
    style_maps++;
       }
       LOG(llevDebug,"free_style_maps: Freed %d maps\n", style_maps);
   }


Legend:
line(s) removed in v.1.13 
line(s) changed
 line(s) added in v.1.14

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:58