Index: plug_footprint_act.c =================================================================== --- plug_footprint_act.c (revision 17405) +++ plug_footprint_act.c (revision 17406) @@ -33,8 +33,9 @@ static const char pcb_acts_fp_rehash[] = "fp_rehash()" ; static const char pcb_acth_fp_rehash[] = "Flush the library index; rescan all library search paths and rebuild the library index. Useful if there are changes in the library during a pcb-rnd session."; -static int pcb_act_fp_rehash(int argc, const char **argv) +static int pcb_act_fp_rehash(int oargc, const char **oargv) { + PCB_OLD_ACT_BEGIN; pcb_fplibrary_t *l; if (argc == 0) { @@ -63,6 +64,7 @@ return 1; } return 0; + PCB_OLD_ACT_END; }