diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-06 19:13:02 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-06 19:13:02 +0000 |
commit | bc2018301e5ca8dde381497c23758b94e166a798 (patch) | |
tree | 33808df2ffa2ad1f47b4b47fd0910042a5f23eef | |
parent | 190687a6c01464ffb5105b0660141a797cef18ba (diff) |
Fixed warning
-rwxr-xr-x | libtest/callbacks-example-listlinks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtest/callbacks-example-listlinks.c b/libtest/callbacks-example-listlinks.c index 390d7aa..598f8d4 100755 --- a/libtest/callbacks-example-listlinks.c +++ b/libtest/callbacks-example-listlinks.c @@ -28,7 +28,7 @@ static int process_file(t_hts_callbackarg * carg, httrackp * opt, char *html, int len, const char *url_address, const char *url_file); static int check_detectedlink(t_hts_callbackarg * carg, httrackp * opt, char *link); -static int check_loop(t_hts_callbackarg * carg, httrackp * opt, void *back, +static int check_loop(t_hts_callbackarg * carg, httrackp * opt, lien_back *back, int back_max, int back_index, int lien_tot, int lien_ntot, int stat_time, hts_stat_struct * stats); static int end(t_hts_callbackarg * carg, httrackp * opt); @@ -112,7 +112,7 @@ static int check_detectedlink(t_hts_callbackarg * carg, httrackp * opt, return 1; /* success */ } -static int check_loop(t_hts_callbackarg * carg, httrackp * opt, void *back, +static int check_loop(t_hts_callbackarg * carg, httrackp * opt, lien_back *back, int back_max, int back_index, int lien_tot, int lien_ntot, int stat_time, hts_stat_struct * stats) { static int fun_animation = 0; |