Index: mucs.c =================================================================== --- mucs.c (revision 30899) +++ mucs.c (revision 30900) @@ -64,11 +64,11 @@ pcb_coord_t x1, y1, x2, y2, r; pcb_pstk_t *ps; - PCB_ACT_MAY_CONVARG(1, FGW_STR, LoadMucsFrom, fname = argv[1].val.str); + rnd_PCB_ACT_MAY_CONVARG(1, FGW_STR, LoadMucsFrom, fname = argv[1].val.str); if (!(pcb_layer_flags(PCB, PCB_CURRLID(PCB)) & PCB_LYT_COPPER)) { pcb_message(PCB_MSG_ERROR, "The currently active layer is not a copper layer.\n"); - PCB_ACT_IRES(1); + RND_ACT_IRES(1); return 0; } @@ -78,7 +78,7 @@ "This file could be generated by mucs-pcb\n", default_file, ".l1", NULL, "unixplot", PCB_HID_FSD_READ, NULL); if (fname == NULL) { - PCB_ACT_IRES(1); + RND_ACT_IRES(1); return 0; } if (default_file != NULL) { @@ -93,7 +93,7 @@ fi = pcb_fopen(&PCB->hidlib, fname, "r"); if (!fi) { pcb_message(PCB_MSG_ERROR, "Can't load mucs unixplot file %s for read\n", fname); - PCB_ACT_IRES(1); + RND_ACT_IRES(1); return 0; } @@ -150,7 +150,7 @@ } } fclose(fi); - PCB_ACT_IRES(0); + RND_ACT_IRES(0); return 0; }