From: Robert Kessl Date: Wed, 30 Jul 2014 07:42:27 +0000 (+0200) Subject: tableprinter: small comment update X-Git-Tag: v6.1~3^2~21 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=d9e2a686f0f9200d07c7ff6c65ec40bd7a7b876c;p=libucw.git tableprinter: small comment update --- diff --git a/ucw/table.c b/ucw/table.c index a787d587..9414b18d 100644 --- a/ucw/table.c +++ b/ucw/table.c @@ -188,11 +188,11 @@ void table_set_col_order(struct table *tbl, const struct table_col_instance *col tbl->column_order = mp_alloc(tbl->pool, sizeof(struct table_col_instance) * cols_to_output); memcpy(tbl->column_order, col_order, sizeof(struct table_col_instance) * cols_to_output); for(uint i = 0; i < cols_to_output; i++) { - int col_def_idx = tbl->column_order[i].idx; // this is given in col_order + int col_def_idx = tbl->column_order[i].idx; // this is given in arg @col_order tbl->column_order[i].col_def = tbl->columns + col_def_idx; - tbl->column_order[i].cell_content = NULL; // cell_content is copied from @col_order, so make sure that it is NULL + tbl->column_order[i].cell_content = NULL; // cell_content is copied from arg @col_order, so make sure that it is NULL tbl->column_order[i].next_column = -1; - // tbl->column_order[i].fmt should be untouched (copied from col_order) + // tbl->column_order[i].fmt should be untouched (copied from arg @col_order) } }