Index: act_geo.c =================================================================== --- act_geo.c (revision 30902) +++ act_geo.c (revision 30903) @@ -38,7 +38,7 @@ static const char pcb_acth_IsPointOnLine[] = "Returns 1 if point x;y with radius r is on the line addressed by idpath, 0 else."; static fgw_error_t pcb_act_IsPointOnLine(fgw_arg_t *res, int argc, fgw_arg_t *argv) { - pcb_coord_t x, y, r; + rnd_coord_t x, y, r; pcb_idpath_t *idp; pcb_any_obj_t *obj; @@ -61,7 +61,7 @@ static const char pcb_acth_IsPointOnArc[] = "Returns 1 if point x;y with radius r is on the arc addressed by idpath, 0 else."; static fgw_error_t pcb_act_IsPointOnArc(fgw_arg_t *res, int argc, fgw_arg_t *argv) { - pcb_coord_t x, y, r; + rnd_coord_t x, y, r; pcb_idpath_t *idp; pcb_any_obj_t *obj; Index: act_read.c =================================================================== --- act_read.c (revision 30902) +++ act_read.c (revision 30903) @@ -49,7 +49,7 @@ const char *input, *units, *def_unit; int relative, a; double v; - pcb_bool success; + rnd_bool success; RND_PCB_ACT_CONVARG(1, FGW_STR, GetValue, input = argv[1].val.str); RND_PCB_ACT_CONVARG(2, FGW_STR, GetValue, units = argv[2].val.str); @@ -88,7 +88,7 @@ static int flg_error(const char *msg) { - pcb_message(PCB_MSG_ERROR, "act_read flag conversion error: %s\n", msg); + rnd_message(PCB_MSG_ERROR, "act_read flag conversion error: %s\n", msg); return 0; }