Index: edif.c =================================================================== --- edif.c (revision 30954) +++ edif.c (revision 30955) @@ -5782,7 +5782,7 @@ #ifdef DEBUG DumpStack(); #endif /* DEBUG */ - rnd_message(PCB_MSG_ERROR, "EDIF import error: %s, line %ld: %s\n",InFile,LineNumber,ers); + rnd_message(RND_MSG_ERROR, "EDIF import error: %s, line %ld: %s\n",InFile,LineNumber,ers); } /* * String bucket definitions. @@ -6244,7 +6244,7 @@ int ReadEdifNetlist(char *filename) { - rnd_message(PCB_MSG_INFO,"Importing edif netlist %s\n", filename); + rnd_message(RND_MSG_INFO,"Importing edif netlist %s\n", filename); ParseEDIF(filename, NULL); return 0; Index: edif.y =================================================================== --- edif.y (revision 30954) +++ edif.y (revision 30955) @@ -3984,7 +3984,7 @@ #ifdef DEBUG DumpStack(); #endif /* DEBUG */ - rnd_message(PCB_MSG_ERROR, "EDIF import error: %s, line %ld: %s\n",InFile,LineNumber,ers); + rnd_message(RND_MSG_ERROR, "EDIF import error: %s, line %ld: %s\n",InFile,LineNumber,ers); } /* * String bucket definitions. @@ -4446,7 +4446,7 @@ int ReadEdifNetlist(char *filename) { - rnd_message(PCB_MSG_INFO,"Importing edif netlist %s\n", filename); + rnd_message(RND_MSG_INFO,"Importing edif netlist %s\n", filename); ParseEDIF(filename, NULL); return 0; Index: import_edif.c =================================================================== --- import_edif.c (revision 30954) +++ import_edif.c (revision 30955) @@ -77,7 +77,7 @@ int ret; if (numfns != 1) { - rnd_message(PCB_MSG_ERROR, "import_edif: requires exactly 1 input file name\n"); + rnd_message(RND_MSG_ERROR, "import_edif: requires exactly 1 input file name\n"); return -1; }