Index: trunk/src_plugins/fp_wget/wget_common.c =================================================================== --- trunk/src_plugins/fp_wget/wget_common.c (revision 19474) +++ trunk/src_plugins/fp_wget/wget_common.c (revision 19475) @@ -210,7 +210,7 @@ } -int fp_wget_search(char *out, int out_len, char *name, int offline, const char *url, const char *cache) +int fp_wget_search(char *out, int out_len, const char *name, int offline, const char *url, const char *cache) { FILE *f_idx; int fctx; Index: trunk/src_plugins/fp_wget/wget_common.h =================================================================== --- trunk/src_plugins/fp_wget/wget_common.h (revision 19474) +++ trunk/src_plugins/fp_wget/wget_common.h (revision 19475) @@ -13,7 +13,7 @@ /* search fn in an auto updated index file; return 0 on success and fill in out with the full path from the index. */ -int fp_wget_search(char *out, int out_len, char *fn, int offline, const char *idx_url, const char *idx_cache); +int fp_wget_search(char *out, int out_len, const char *fn, int offline, const char *idx_url, const char *idx_cache); /* search fn in an index file; return 0 on success and fill in out with the full path from the index. */