From: Zbigniew Jędrzejewski-Szmek Date: Sun, 27 Aug 2023 11:56:32 +0000 (+0300) Subject: id128: rework conditional to reduce indentation X-Git-Tag: v255-rc1~598^2~2 X-Git-Url: http://git-history.diyao.me/?a=commitdiff_plain;h=716126c069d8454450914bb2d2917d6367872da7;p=systemd%2F.git id128: rework conditional to reduce indentation --- diff --git a/src/id128/id128.c b/src/id128/id128.c index 18e0880805..9e0a3488dd 100644 --- a/src/id128/id128.c +++ b/src/id128/id128.c @@ -93,23 +93,22 @@ static int show_one(Table **table, const char *name, sd_id128_t uuid, bool first if (!first) puts(""); return 0; + } - } else if (arg_value) + if (arg_value) return id128_pretty_print(u, arg_mode); - else { - if (!*table) { - *table = table_new("name", "id"); - if (!*table) - return log_oom(); - table_set_width(*table, 0); - } - - return table_add_many(*table, - TABLE_STRING, name, - arg_mode == ID128_PRINT_ID128 ? TABLE_ID128 : TABLE_UUID, - u); + if (!*table) { + *table = table_new("name", "id"); + if (!*table) + return log_oom(); + table_set_width(*table, 0); } + + return table_add_many(*table, + TABLE_STRING, name, + arg_mode == ID128_PRINT_ID128 ? TABLE_ID128 : TABLE_UUID, + u); } static int verb_show(int argc, char **argv, void *userdata) {