Index: plug_footprint.c =================================================================== --- plug_footprint.c (revision 3419) +++ plug_footprint.c (revision 3420) @@ -71,11 +71,11 @@ if (fp_tags == NULL) fp_tags = htsp_alloc(strhash, strkeyeq); - e = htsp_getentry(fp_tags, (char *) tag); + e = htsp_getentry(fp_tags, tag); if ((e == NULL) && alloc) { htsp_set(fp_tags, pcb_strdup(tag), (void *) counter); counter++; - e = htsp_getentry(fp_tags, (char *) tag); + e = htsp_getentry(fp_tags, tag); } return e == NULL ? NULL : e->key; }