From 16e64b6822052c84f9b00e646fefa79989a23787 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 19 Dec 2016 23:36:48 +0100 Subject: libsmartcols: remove dead checks We initialize them before. Signed-off-by: Igor Gnatenko --- libsmartcols/src/table_print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libsmartcols') diff --git a/libsmartcols/src/table_print.c b/libsmartcols/src/table_print.c index c2c178f72..2aff9d181 100644 --- a/libsmartcols/src/table_print.c +++ b/libsmartcols/src/table_print.c @@ -275,7 +275,7 @@ static const char *get_cell_color(struct libscols_table *tb, const char *color = NULL; if (tb && tb->colors_wanted) { - if (ce && !color) + if (ce) color = ce->color; if (ln && !color) color = ln->color; @@ -455,7 +455,7 @@ static int print_data(struct libscols_table *tb, case SCOLS_FMT_JSON: fputs_quoted_json_lower(scols_cell_get_data(&cl->header), tb->out); fputs(": ", tb->out); - if (!data || !*data) + if (!*data) fputs("null", tb->out); else fputs_quoted_json(data, tb->out); -- cgit v1.2.3-55-g7522