[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: CVS update: g_netlist.c



  User: pbernaud
  Date: 05/02/14 17:31:49

  Modified:    .        g_netlist.c
  Log:
  Fixed g_get_packages() to actually build the list of packages (missing lines in last commit).
  
  
  
  
  Revision  Changes    Path
  1.39      +3 -0      eda/geda/devel/gnetlist/src/g_netlist.c
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: g_netlist.c
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gnetlist/src/g_netlist.c,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -b -r1.38 -r1.39
  --- g_netlist.c	13 Feb 2005 21:55:42 -0000	1.38
  +++ g_netlist.c	14 Feb 2005 22:31:48 -0000	1.39
  @@ -78,6 +78,9 @@
                                nl_current->component_uref);
         }
       }
  +    /* now create a scheme list of the entries in the hash table */
  +    g_hash_table_foreach (ht, hash_table_2_list, &list);
  +    g_hash_table_destroy (ht);
   
       return list;
   }