Index: eps.c =================================================================== --- eps.c (revision 26874) +++ eps.c (revision 26875) @@ -35,7 +35,7 @@ static int eps_parse_arguments(pcb_hid_t *hid, int *argc, char ***argv); static int eps_set_layer_group(pcb_hid_t *hid, pcb_layergrp_id_t group, const char *purpose, int purpi, pcb_layer_id_t layer, unsigned int flags, int is_empty, pcb_xform_t **xform); static pcb_hid_gc_t eps_make_gc(pcb_hid_t *hid); -static void eps_destroy_gc(pcb_hid_t *hid, pcb_hid_gc_t gc); +static void eps_destroy_gc(pcb_hid_gc_t gc); static void eps_set_color(pcb_hid_gc_t gc, const pcb_color_t *name); static void eps_set_line_cap(pcb_hid_gc_t gc, pcb_cap_style_t style); static void eps_set_line_width(pcb_hid_gc_t gc, pcb_coord_t width); @@ -461,7 +461,7 @@ return rv; } -static void eps_destroy_gc(pcb_hid_t *hid, pcb_hid_gc_t gc) +static void eps_destroy_gc(pcb_hid_gc_t gc) { free(gc); } Index: ps.c =================================================================== --- ps.c (revision 26874) +++ ps.c (revision 26875) @@ -949,7 +949,7 @@ return rv; } -static void ps_destroy_gc(pcb_hid_t *hid, pcb_hid_gc_t gc) +static void ps_destroy_gc(pcb_hid_gc_t gc) { free(gc); }