Index: trunk/src/plug_io.c =================================================================== --- trunk/src/plug_io.c (revision 829) +++ trunk/src/plug_io.c (revision 830) @@ -198,7 +198,7 @@ ext = fn + len - 1; vtpr_init(&prios); - camv_plug_io_list(&prios, fn, fmt, CSCH_IOTYP_DESIGN, LIST_SAVE); + camv_plug_io_list(&prios, fn, fmt, CAMV_IOTYP_DESIGN, LIST_SAVE); for(n = 0; n < vtpr_len(&prios); n++) { prio_t *pr = &prios.array[n]; if (ext != NULL) { Index: trunk/src/plug_io.h =================================================================== --- trunk/src/plug_io.h (revision 829) +++ trunk/src/plug_io.h (revision 830) @@ -31,8 +31,8 @@ #include "data.h" typedef enum camv_io_type_s { /* bitfield so multiple detections (e.g. design-or-layer) can be handled */ - CSCH_IOTYP_DESIGN = 1, - CSCH_IOTYP_LAYER = 2 + CAMV_IOTYP_DESIGN = 1, + CAMV_IOTYP_LAYER = 2 } camv_io_type_t; Index: trunk/src_plugins/io_tedax/io_tedax.c =================================================================== --- trunk/src_plugins/io_tedax/io_tedax.c (revision 829) +++ trunk/src_plugins/io_tedax/io_tedax.c (revision 830) @@ -567,7 +567,7 @@ static int camv_tdx_save_prio(const char *fn, const char *fmt, camv_io_type_t type) { - if ((type & CSCH_IOTYP_DESIGN) == 0) + if ((type & CAMV_IOTYP_DESIGN) == 0) return -1; if ((rnd_strcasecmp(fmt, "tdx") != 0) && (rnd_strcasecmp(fmt, "tedax") != 0))