aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/upload.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/upload.c')
-rw-r--r--src/plugins/fs/upload.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/fs/upload.c b/src/plugins/fs/upload.c
index 0d83d164..ef2644be 100644
--- a/src/plugins/fs/upload.c
+++ b/src/plugins/fs/upload.c
@@ -556,8 +556,7 @@ on_mainFileSharingInsertBrowseButton_clicked_fs (GtkWidget * browseButton,
556 556
557struct FCBC 557struct FCBC
558{ 558{
559 int (*method) (struct GNUNET_FSUI_Context * ctx, 559 int (*method) (struct GNUNET_FSUI_UploadList * list);
560 struct GNUNET_FSUI_UploadList * list);
561 struct GNUNET_FSUI_UploadList *argument; 560 struct GNUNET_FSUI_UploadList *argument;
562}; 561};
563 562
@@ -565,7 +564,7 @@ static void *
565fsui_callback (void *cls) 564fsui_callback (void *cls)
566{ 565{
567 struct FCBC *fcbc = cls; 566 struct FCBC *fcbc = cls;
568 fcbc->method (ctx, fcbc->argument); 567 fcbc->method (fcbc->argument);
569 return NULL; 568 return NULL;
570} 569}
571 570