Index: export_openscad.c =================================================================== --- export_openscad.c (revision 30954) +++ export_openscad.c (revision 30955) @@ -585,7 +585,7 @@ static void openscad_calibrate(pcb_hid_t *hid, double xval, double yval) { - rnd_message(PCB_MSG_ERROR, "openscad_calibrate() not implemented"); + rnd_message(RND_MSG_ERROR, "openscad_calibrate() not implemented"); return; } @@ -613,7 +613,7 @@ f = pcb_fopen_askovr(&PCB->hidlib, name, "w", NULL); if (f == NULL) { - rnd_message(PCB_MSG_ERROR, "Failed to open %s for writing\n", name); + rnd_message(RND_MSG_ERROR, "Failed to open %s for writing\n", name); RND_ACT_IRES(-1); return 0; } Index: scad_models.c =================================================================== --- scad_models.c (revision 30954) +++ scad_models.c (revision 30955) @@ -68,7 +68,7 @@ } else { htsp_set(models, (char *)name, NULL); - rnd_message(PCB_MSG_WARNING, "openscad: can't find model file for %s in the footprint library\n", name); + rnd_message(RND_MSG_WARNING, "openscad: can't find model file for %s in the footprint library\n", name); } } ref = htsp_get(models, (char *)name);