Index: eps.c =================================================================== --- eps.c (revision 30982) +++ eps.c (revision 30983) @@ -643,7 +643,7 @@ static int eps_usage(rnd_hid_t *hid, const char *topic) { fprintf(stderr, "\neps exporter command line arguments:\n\n"); - pcb_hid_usage(eps_attribute_list, sizeof(eps_attribute_list) / sizeof(eps_attribute_list[0])); + rnd_hid_usage(eps_attribute_list, sizeof(eps_attribute_list) / sizeof(eps_attribute_list[0])); fprintf(stderr, "\nUsage: pcb-rnd [generic_options] -x eps [eps options] foo.pcb\n\n"); return 0; } Index: ps.c =================================================================== --- ps.c (revision 30982) +++ ps.c (revision 30983) @@ -1368,7 +1368,7 @@ ps_calib_attribute_list[0].val.str = rnd_strdup("lpr"); } - if (pcb_attribute_dialog("ps_calibrate", ps_calib_attribute_list, 1, "Print Calibration Page", NULL)) + if (rnd_attribute_dialog("ps_calibrate", ps_calib_attribute_list, 1, "Print Calibration Page", NULL)) return; if (ps_calib_attribute_list[0].val.str == NULL) @@ -1462,7 +1462,7 @@ static int ps_usage(rnd_hid_t *hid, const char *topic) { fprintf(stderr, "\nps exporter command line arguments:\n\n"); - pcb_hid_usage(ps_attribute_list, sizeof(ps_attribute_list) / sizeof(ps_attribute_list[0])); + rnd_hid_usage(ps_attribute_list, sizeof(ps_attribute_list) / sizeof(ps_attribute_list[0])); fprintf(stderr, "\nUsage: pcb-rnd [generic_options] -x ps [ps options] foo.pcb\n\n"); return 0; }