X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=write_common.c;h=1da78b5137fda429c80490abc77e548a1a3f812b;hp=b05a9e9839e8e5bf6e37531f81307cb8a08318dc;hb=98f2c8aea52a49fad3fd6df67b1eb32c1499176c;hpb=7d473d0025bc76374f55ca2b135b6e2f70ae4a1e diff --git a/write_common.c b/write_common.c index b05a9e98..1da78b51 100644 --- a/write_common.c +++ b/write_common.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2006-2009 Andre Noll + * Copyright (C) 2006-2010 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -81,12 +81,14 @@ void register_writer_node(struct writer_node *wn, struct btr_node *parent) char *name = make_message("%s writer", writer_names[wn->writer_num]); int ret; - wn->btrn = btr_new_node(name, parent, w->execute, wn); + wn->btrn = btr_new_node(&(struct btr_node_description) + EMBRACE(.name = name, .parent = parent, + .handler = w->execute, .context = wn)); strcpy(wn->task.status, name); free(name); ret = w->open(wn); - wn->task.post_select = w->post_select_btr; - wn->task.pre_select = w->pre_select_btr; + wn->task.post_select = w->post_select; + wn->task.pre_select = w->pre_select; register_task(&wn->task); }