libsmartcols: remove dead checks

We initialize them before.

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
This commit is contained in:
Igor Gnatenko 2016-12-19 23:36:48 +01:00
parent 193b3239c1
commit 16e64b6822
1 changed files with 2 additions and 2 deletions

View File

@ -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);