aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/download.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/download.c')
-rw-r--r--src/plugins/fs/download.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/fs/download.c b/src/plugins/fs/download.c
index b6679b05..c6ea9450 100644
--- a/src/plugins/fs/download.c
+++ b/src/plugins/fs/download.c
@@ -100,10 +100,10 @@ static int addFilesToDirectory
100 return OK; 100 return OK;
101} 101}
102 102
103static void initiateDownload(GtkTreeModel *model, 103static void initiateDownload(GtkTreeModel * model,
104 GtkTreePath * path, 104 GtkTreePath * path,
105 GtkTreeIter * iter, 105 GtkTreeIter * iter,
106 GtkTreeStore * tree) { 106 gpointer unused) {
107 struct ECRS_URI * uri; 107 struct ECRS_URI * uri;
108 struct ECRS_MetaData * meta; 108 struct ECRS_MetaData * meta;
109 char * filename; 109 char * filename;
@@ -235,7 +235,7 @@ void on_downloadButton_clicked(GtkWidget * treeview,
235 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)); 235 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview));
236 gtk_tree_selection_selected_foreach 236 gtk_tree_selection_selected_foreach
237 (selection, 237 (selection,
238 (GtkTreeSelectionForeachFunc) &initiateDownload, 238 &initiateDownload,
239 NULL); 239 NULL);
240} 240}
241 241