Index: gsch2pcb-rnd/gsch2pcb.c =================================================================== --- gsch2pcb-rnd/gsch2pcb.c (revision 30952) +++ gsch2pcb-rnd/gsch2pcb.c (revision 30953) @@ -436,8 +436,8 @@ if (!have_cli_schematics) { /* load all schematics from the project file unless we have schematics from the cli */ rnd_conf_native_t *nat = rnd_conf_get_field("utils/gsch2pcb_rnd/schematics"); if (nat != NULL) { - pcb_conf_listitem_t *ci; - for (ci = pcb_conflist_first(nat->val.list); ci != NULL; ci = pcb_conflist_next(ci)) { + rnd_conf_listitem_t *ci; + for (ci = rnd_conflist_first(nat->val.list); ci != NULL; ci = rnd_conflist_next(ci)) { const char *p = ci->val.string[0]; if (ci->type != RND_CFN_STRING) continue;