Index: mentor_sch.c =================================================================== --- mentor_sch.c (revision 28030) +++ mentor_sch.c (revision 28031) @@ -95,7 +95,7 @@ } nethlp_elem_done(&ectx); -/* pcb_actionl("ElementList", "Need", null_empty(sattr->refdes), null_empty(sattr->footprint), null_empty(sattr->value), NULL);*/ +/* pcb_actionva("ElementList", "Need", null_empty(sattr->refdes), null_empty(sattr->footprint), null_empty(sattr->value), NULL);*/ return 0; } @@ -176,9 +176,9 @@ return -1; } - pcb_actionl("Netlist", "Freeze", NULL); - pcb_actionl("Netlist", "Clear", NULL); - pcb_actionl("ElementList", "start", NULL); + pcb_actionva("Netlist", "Freeze", NULL); + pcb_actionva("Netlist", "Clear", NULL); + pcb_actionva("ElementList", "start", NULL); for(library = dom->root->children; library != NULL; library = library->next) { if (strcmp(library->str, "library") == 0) { @@ -198,9 +198,9 @@ } } - pcb_actionl("ElementList", "Done", NULL); - pcb_actionl("Netlist", "Sort", NULL); - pcb_actionl("Netlist", "Thaw", NULL); + pcb_actionva("ElementList", "Done", NULL); + pcb_actionva("Netlist", "Sort", NULL); + pcb_actionva("Netlist", "Thaw", NULL); /* for(n = library->children; n != NULL; n = n->next) { printf("n=%s\n", n->str); Index: netlist_helper.c =================================================================== --- netlist_helper.c (revision 28030) +++ netlist_helper.c (revision 28031) @@ -256,7 +256,7 @@ if (value == NULL) value = ""; /* create elemet */ - pcb_actionl("ElementList", "Need", refdes, footprint, value, NULL); + pcb_actionva("ElementList", "Need", refdes, footprint, value, NULL); /* printf("Elem '%s' -> %s:%s:%s\n", ectx->id, refdes, footprint, value);*/ } else @@ -296,7 +296,7 @@ pcb_message(PCB_MSG_ERROR, "nethelper: can't resolve refdes of part %s\n", part); } pcb_snprintf(term, sizeof(term), "%s-%s", refdes, pin); - pcb_actionl("Netlist", "Add", nctx->netname, term, NULL); + pcb_actionva("Netlist", "Add", nctx->netname, term, NULL); } void nethlp_net_destroy(nethlp_net_ctx_t *nctx)