Index: tnetlist.c =================================================================== --- tnetlist.c (revision 28030) +++ tnetlist.c (revision 28031) @@ -76,8 +76,8 @@ htsp_init(&fps, strhash, strkeyeq); htsp_init(&pinnames, strhash, strkeyeq); - pcb_actionl("Netlist", "Freeze", NULL); - pcb_actionl("Netlist", "Clear", NULL); + pcb_actionva("Netlist", "Freeze", NULL); + pcb_actionva("Netlist", "Clear", NULL); while((argc = tedax_getline(fn, line, sizeof(line), argv, sizeof(argv)/sizeof(argv[0]))) >= 0) { if ((argc == 3) && (strcmp(argv[0], "footprint") == 0)) { @@ -91,7 +91,7 @@ else if ((argc == 4) && (strcmp(argv[0], "conn") == 0)) { char id[512]; sprintf(id, "%s-%s", argv[2], argv[3]); - pcb_actionl("Netlist", "Add", argv[1], id, NULL); + pcb_actionva("Netlist", "Add", argv[1], id, NULL); } else if ((argc == 4) && (strcmp(argv[0], "pinname") == 0)) { char id[512]; @@ -107,11 +107,11 @@ break; } - pcb_actionl("Netlist", "Sort", NULL); - pcb_actionl("Netlist", "Thaw", NULL); + pcb_actionva("Netlist", "Sort", NULL); + pcb_actionva("Netlist", "Thaw", NULL); if (import_fp) { - pcb_actionl("ElementList", "start", NULL); + pcb_actionva("ElementList", "start", NULL); for (e = htsp_first(&fps); e; e = htsp_next(&fps, e)) { fp_t *fp = e->value; @@ -119,7 +119,7 @@ if (fp->footprint == NULL) pcb_message(PCB_MSG_ERROR, "tedax: not importing refdes=%s: no footprint specified\n", e->key); else - pcb_actionl("ElementList", "Need", null_empty(e->key), null_empty(fp->footprint), null_empty(fp->value), NULL); + pcb_actionva("ElementList", "Need", null_empty(e->key), null_empty(fp->footprint), null_empty(fp->value), NULL); free(e->key); free(fp->value); @@ -126,7 +126,7 @@ free(fp->footprint); free(fp); } - pcb_actionl("ElementList", "Done", NULL); + pcb_actionva("ElementList", "Done", NULL); } for (e = htsp_first(&pinnames); e; e = htsp_next(&pinnames, e)) { @@ -135,7 +135,7 @@ if (pin != NULL) { *pin = '\0'; pin++; - pcb_actionl("ChangePinName", refdes, pin, name, NULL); + pcb_actionva("ChangePinName", refdes, pin, name, NULL); } free(e->key); free(e->value);