Index: src/plug_footprint.h =================================================================== --- src/plug_footprint.h (revision 2179) +++ src/plug_footprint.h (revision 2180) @@ -25,10 +25,6 @@ */ int fp_dupname(const char *name, char **basename, char **params); -/* walk the search_path for finding the first footprint for basename (shall not contain "(") */ -////// TODO -char *fp_fs_search(const char *search_path, const char *basename, int parametric); - /**** tag management ****/ /* Resolve a tag name to an unique void * ID; create unknown tag if alloc != 0 */ const void *fp_tag(const char *tag, int alloc); Index: src_plugins/fp_fs/fp_fs.c =================================================================== --- src_plugins/fp_fs/fp_fs.c (revision 2179) +++ src_plugins/fp_fs/fp_fs.c (revision 2180) @@ -281,8 +281,8 @@ return 0; } -/* TODO: make this static */ -char *fp_fs_search(const char *search_path, const char *basename, int parametric) +/* walk the search_path for finding the first footprint for basename (shall not contain "(") */ +static char *fp_fs_search(const char *search_path, const char *basename, int parametric) { const char *p, *end; char path[MAXPATHLEN + 1];