Index: route_style.c =================================================================== --- route_style.c (revision 30954) +++ route_style.c (revision 30955) @@ -89,7 +89,7 @@ if (len > sizeof(routeStyle->name)-1) { memcpy(routeStyle->name, Name, sizeof(routeStyle->name)-1); routeStyle->name[sizeof(routeStyle->name)-1] = '\0'; - rnd_message(PCB_MSG_WARNING, "Route style name '%s' too long, truncated to '%s'\n", Name, routeStyle->name); + rnd_message(RND_MSG_WARNING, "Route style name '%s' too long, truncated to '%s'\n", Name, routeStyle->name); } else strcpy(routeStyle->name, Name); @@ -213,7 +213,7 @@ case PCB_OBJ_ARC: return pcb_get_style_size(F_SelectedArcs, out, 0, size_id); } - rnd_message(PCB_MSG_ERROR, "Sorry, can't fetch the style of that object type (%x)\n", type); + rnd_message(RND_MSG_ERROR, "Sorry, can't fetch the style of that object type (%x)\n", type); return -1; case F_SelectedPads: if (size_id != 2) /* don't mess with pad size */ @@ -239,7 +239,7 @@ return 0; case F_SelectedTexts: case F_SelectedNames: - rnd_message(PCB_MSG_ERROR, "Sorry, can't change style of every selected object\n"); + rnd_message(RND_MSG_ERROR, "Sorry, can't change style of every selected object\n"); return -1; } return 0;