Index: fp_board.c =================================================================== --- fp_board.c (revision 30902) +++ fp_board.c (revision 30903) @@ -35,7 +35,7 @@ /* load file */ memset(&buff, 0, sizeof(buff)); if (pcb_buffer_load_layout(PCB, &buff, fpath, NULL) != pcb_true) { - pcb_message(PCB_MSG_ERROR, "Warning: failed to load %s\n", fpath); + rnd_message(PCB_MSG_ERROR, "Warning: failed to load %s\n", fpath); return -1; } @@ -107,7 +107,7 @@ /* load file */ memset(&buff, 0, sizeof(buff)); if (pcb_buffer_load_layout(PCB, &buff, fpath, NULL) != pcb_true) { - pcb_message(PCB_MSG_ERROR, "Warning: failed to load %s\n", fpath); + rnd_message(PCB_MSG_ERROR, "Warning: failed to load %s\n", fpath); goto err; } @@ -138,7 +138,7 @@ static void fp_board_fclose(pcb_plug_fp_t *ctx, FILE * f, pcb_fp_fopen_ctx_t *fctx) { - pcb_message(PCB_MSG_ERROR, "Internal error: fp_board_fclose() shouldn't have been called. Please report this bug.\n"); + rnd_message(PCB_MSG_ERROR, "Internal error: fp_board_fclose() shouldn't have been called. Please report this bug.\n"); }