From: Igor Gnatenko Date: Mon, 19 Dec 2016 22:36:48 +0000 (+0100) Subject: libsmartcols: remove dead checks X-Git-Tag: v2.30-rc1~312^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=16e64b6822052c84f9b00e646fefa79989a23787;p=thirdparty%2Futil-linux.git libsmartcols: remove dead checks We initialize them before. Signed-off-by: Igor Gnatenko --- diff --git a/libsmartcols/src/table_print.c b/libsmartcols/src/table_print.c index c2c178f722..2aff9d181f 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);