aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/search.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/search.c')
-rw-r--r--src/plugins/fs/search.c5
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
920struct FCBC 920struct 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 *
928fsui_callback (void *cls) 927fsui_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