diff options
Diffstat (limited to 'src/plugins/fs/download.c')
-rw-r--r-- | src/plugins/fs/download.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/fs/download.c b/src/plugins/fs/download.c index b19a65d4..1b54d4a3 100644 --- a/src/plugins/fs/download.c +++ b/src/plugins/fs/download.c | |||
@@ -849,8 +849,7 @@ on_statusDownloadURIEntry_editing_done_fs (GtkWidget * entry, | |||
849 | 849 | ||
850 | struct FCBC | 850 | struct FCBC |
851 | { | 851 | { |
852 | int (*method) (struct GNUNET_FSUI_Context * ctx, | 852 | int (*method) (struct GNUNET_FSUI_DownloadList * list); |
853 | struct GNUNET_FSUI_DownloadList * list); | ||
854 | struct GNUNET_FSUI_DownloadList *argument; | 853 | struct GNUNET_FSUI_DownloadList *argument; |
855 | }; | 854 | }; |
856 | 855 | ||
@@ -858,7 +857,7 @@ static void * | |||
858 | fsui_callback (void *cls) | 857 | fsui_callback (void *cls) |
859 | { | 858 | { |
860 | struct FCBC *fcbc = cls; | 859 | struct FCBC *fcbc = cls; |
861 | fcbc->method (ctx, fcbc->argument); | 860 | fcbc->method (fcbc->argument); |
862 | return NULL; | 861 | return NULL; |
863 | } | 862 | } |
864 | 863 | ||