From ca7b9e1e0a84c007d848381527d043d9447b826b Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 14 Nov 2020 09:05:29 +0900 Subject: [PATCH] systemctl: use unsigned for job_count As, the number of units `c` is unsigned. --- src/systemctl/systemctl-list-units.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systemctl/systemctl-list-units.c b/src/systemctl/systemctl-list-units.c index ddef5def0ce..e6a530ed5b1 100644 --- a/src/systemctl/systemctl-list-units.c +++ b/src/systemctl/systemctl-list-units.c @@ -90,6 +90,7 @@ static int get_unit_list_recursive( static int output_units_list(const UnitInfo *unit_infos, unsigned c) { _cleanup_(table_unrefp) Table *table = NULL; + unsigned job_count = 0; int r; table = table_new("", "unit", "load", "active", "sub", "job", "description"); @@ -108,7 +109,6 @@ static int output_units_list(const UnitInfo *unit_infos, unsigned c) { (void) table_set_empty_string(table, "-"); - int job_count = 0; for (const UnitInfo *u = unit_infos; unit_infos && u < unit_infos + c; u++) { _cleanup_free_ char *j = NULL; const char *on_underline = "", *on_loaded = "", *on_active = ""; -- 2.47.3