diff options
Diffstat (limited to 'src/plugins/fs/search.c')
-rw-r--r-- | src/plugins/fs/search.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/fs/search.c b/src/plugins/fs/search.c index c7f4de30..a1c79784 100644 --- a/src/plugins/fs/search.c +++ b/src/plugins/fs/search.c | |||
@@ -919,8 +919,7 @@ on_fssearchbutton_clicked_fs (gpointer dummy2, GtkWidget * searchButton) | |||
919 | 919 | ||
920 | struct FCBC | 920 | struct FCBC |
921 | { | 921 | { |
922 | int (*method) (struct GNUNET_FSUI_Context * ctx, | 922 | int (*method) (struct GNUNET_FSUI_SearchList * list); |
923 | struct GNUNET_FSUI_SearchList * list); | ||
924 | struct GNUNET_FSUI_SearchList *argument; | 923 | struct GNUNET_FSUI_SearchList *argument; |
925 | }; | 924 | }; |
926 | 925 | ||
@@ -928,7 +927,7 @@ static void * | |||
928 | fsui_callback (void *cls) | 927 | fsui_callback (void *cls) |
929 | { | 928 | { |
930 | struct FCBC *fcbc = cls; | 929 | struct FCBC *fcbc = cls; |
931 | fcbc->method (ctx, fcbc->argument); | 930 | fcbc->method (fcbc->argument); |
932 | return NULL; | 931 | return NULL; |
933 | } | 932 | } |
934 | 933 | ||