Index: report.c =================================================================== --- report.c (revision 23589) +++ report.c (revision 23590) @@ -496,7 +496,7 @@ /* find the first terminal object referenced from the net that actually exist */ for(t = pcb_termlist_first(&net->conns); t != NULL; t = pcb_termlist_next(t)) { - term = pcb_term_find_name(PCB, PCB->Data, PCB_LYT_COPPER, t->refdes, t->term, 0, NULL, NULL); + term = pcb_term_find_name(PCB, PCB->Data, PCB_LYT_COPPER, t->refdes, t->term, NULL, NULL); if (term != NULL) break; } @@ -671,7 +671,7 @@ return 1; } - obj = pcb_term_find_name(PCB, PCB->Data, PCB_LYT_COPPER, term->refdes, term->term, 0, NULL, NULL); + obj = pcb_term_find_name(PCB, PCB->Data, PCB_LYT_COPPER, term->refdes, term->term, NULL, NULL); if (obj == NULL) { pcb_message(PCB_MSG_INFO, "Net found, but its terminal %s-%s is not on the board.\n", term->refdes, term->term); return 1;