Index: tinycad.c =================================================================== --- tinycad.c (revision 30902) +++ tinycad.c (revision 30903) @@ -72,7 +72,7 @@ if (sattr->refdes != NULL) { /* pcb_trace("tinycad sym: refdes=%s val=%s fp=%s\n", sattr->refdes, sattr->value, sattr->footprint);*/ if (sattr->footprint == NULL) - pcb_message(PCB_MSG_ERROR, "tinycad: not importing refdes=%s: no footprint specified\n", sattr->refdes); + rnd_message(PCB_MSG_ERROR, "tinycad: not importing refdes=%s: no footprint specified\n", sattr->refdes); else rnd_actionva(&PCB->hidlib, "ElementList", "Need", null_empty(sattr->refdes), null_empty(sattr->footprint), null_empty(sattr->value), NULL); } @@ -161,7 +161,7 @@ fn = pcb_fopen(&PCB->hidlib, fname_net, "r"); if (fn == NULL) { - pcb_message(PCB_MSG_ERROR, "can't open file '%s' for read\n", fname_net); + rnd_message(PCB_MSG_ERROR, "can't open file '%s' for read\n", fname_net); return -1; } @@ -235,7 +235,7 @@ static int tinycad_import(pcb_plug_import_t *ctx, unsigned int aspects, const char **fns, int numfns) { if (numfns != 1) { - pcb_message(PCB_MSG_ERROR, "import_tinycad: requires exactly 1 input file name\n"); + rnd_message(PCB_MSG_ERROR, "import_tinycad: requires exactly 1 input file name\n"); return -1; } return tinycad_load(fns[0]);