Index: trunk/src/libcschem/util_wirenet.c =================================================================== --- trunk/src/libcschem/util_wirenet.c (revision 10312) +++ trunk/src/libcschem/util_wirenet.c (revision 10313) @@ -1268,7 +1268,7 @@ /* check if the wirenet has anything else than floaters and connections */ for(e = htip_first(&wn->id2obj); e != NULL; e = htip_next(&wn->id2obj, e)) { csch_chdr_t *obj = e->value; - if (!obj->floater && (obj->type != CSCH_CTYPE_CONN)) { + if (!obj->floater && (obj->type != CSCH_CTYPE_CONN) && !csch_obj_is_junction(obj)) { has_wires = 1; break; }