Index: gsch2pcb-rnd/gsch2pcb.c =================================================================== --- gsch2pcb-rnd/gsch2pcb.c (revision 30944) +++ gsch2pcb-rnd/gsch2pcb.c (revision 30945) @@ -434,12 +434,12 @@ pcb_conf_load_project(NULL, local_project_pcb_name); if (!have_cli_schematics) { /* load all schematics from the project file unless we have schematics from the cli */ - conf_native_t *nat = pcb_conf_get_field("utils/gsch2pcb_rnd/schematics"); + rnd_conf_native_t *nat = pcb_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)) { const char *p = ci->val.string[0]; - if (ci->type != CFN_STRING) + if (ci->type != RND_CFN_STRING) continue; add_schematic(p); } Index: gsch2pcb-rnd/gsch2pcb_rnd_conf.h =================================================================== --- gsch2pcb-rnd/gsch2pcb_rnd_conf.h (revision 30944) +++ gsch2pcb-rnd/gsch2pcb_rnd_conf.h (revision 30945) @@ -6,16 +6,16 @@ typedef struct { const struct utils { const struct gsch2pcb_rnd { - CFT_BOOLEAN remove_unfound_elements; /* = TRUE */ - CFT_BOOLEAN quiet_mode; /* = FALSE */ - CFT_INTEGER verbose; - CFT_BOOLEAN preserve; - CFT_BOOLEAN fix_elements; - CFT_STRING sch_basename; - CFT_STRING default_pcb; /* override default pcb with a given file */ - CFT_STRING empty_footprint_name; - CFT_STRING method; - CFT_LIST schematics; /* use these schematics as input */ + RND_CFT_BOOLEAN remove_unfound_elements; /* = TRUE */ + RND_CFT_BOOLEAN quiet_mode; /* = FALSE */ + RND_CFT_INTEGER verbose; + RND_CFT_BOOLEAN preserve; + RND_CFT_BOOLEAN fix_elements; + RND_CFT_STRING sch_basename; + RND_CFT_STRING default_pcb; /* override default pcb with a given file */ + RND_CFT_STRING empty_footprint_name; + RND_CFT_STRING method; + RND_CFT_LIST schematics; /* use these schematics as input */ } gsch2pcb_rnd; } utils; } conf_gsch2pcb_rnd_t;