1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-06-28 22:51:06 +03:00

eeshow/kicad/delta.c (merge_wires): continue, don't return

This commit is contained in:
Werner Almesberger 2016-08-22 07:06:17 -03:00
parent de8f992158
commit 361f0c2dcd

View File

@ -410,7 +410,7 @@ static void merge_wires(struct sch_obj *a)
if ((*b)->type != sch_obj_wire)
continue;
if (a->u.wire.fn != (*b)->u.wire.fn)
return;
continue;
if (merge_wire(a, *b)) {
struct sch_obj *tmp = *b;