From 05a2166a068f54d59d68590a81369768c2eb657b Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 14 Jun 2021 17:01:48 +0200 Subject: [PATCH] repart: show partitions we don't grow/create as "unchanged" The previous string was "unknown", but that's wrong, because we *do* know what we are going to do with those partitions: we leave them unmodified, hence say "unchanged" in the output, to be clearer. --- src/partition/repart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/partition/repart.c b/src/partition/repart.c index 2fb4e2ec46c..824cfe8cf75 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -2037,7 +2037,7 @@ static int context_dump_partitions(Context *context, const char *node) { TABLE_UINT64, p->current_padding == UINT64_MAX ? 0 : p->current_padding, TABLE_UINT64, p->new_padding, TABLE_STRING, padding_change, TABLE_SET_COLOR, !p->partitions_next && sum_padding > 0 ? ansi_underline() : NULL, - TABLE_STRING, activity ?: "unknown"); + TABLE_STRING, activity ?: "unchanged"); if (r < 0) return table_log_add_error(r); } -- 2.47.3