aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/namespace.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/namespace.c')
-rw-r--r--src/plugins/fs/namespace.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/fs/namespace.c b/src/plugins/fs/namespace.c
index 37bfeab6..10dad5e1 100644
--- a/src/plugins/fs/namespace.c
+++ b/src/plugins/fs/namespace.c
@@ -313,7 +313,7 @@ static int updateView(const ECRS_FileInfo * fi,
313 return OK; 313 return OK;
314} 314}
315 315
316static void clearContentList(void * mdl) { 316static void * clearContentList(void * mdl) {
317 GtkTreeModel * model = GTK_TREE_MODEL(mdl); 317 GtkTreeModel * model = GTK_TREE_MODEL(mdl);
318 struct ECRS_URI * uri; 318 struct ECRS_URI * uri;
319 struct ECRS_MetaData * meta; 319 struct ECRS_MetaData * meta;
@@ -339,12 +339,13 @@ static void clearContentList(void * mdl) {
339 &iter)); 339 &iter));
340 } 340 }
341 DEBUG_END(); 341 DEBUG_END();
342 return NULL;
342} 343}
343 344
344/** 345/**
345 * Update the list of the globally available content. 346 * Update the list of the globally available content.
346 */ 347 */
347static void doUpdateContentList(void * unused) { 348static void * doUpdateContentList(void * unused) {
348 GtkWidget * contentList; 349 GtkWidget * contentList;
349 GtkTreeModel * model; 350 GtkTreeModel * model;
350 351
@@ -360,6 +361,7 @@ static void doUpdateContentList(void * unused) {
360 &updateView, 361 &updateView,
361 model); 362 model);
362 DEBUG_END(); 363 DEBUG_END();
364 return NULL;
363} 365}
364 366
365static void updateContentList(void * unused) { 367static void updateContentList(void * unused) {