From 72d43d09ccb55b70d65494ad8cfea5af6f3ef52f Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 29 Jan 2020 14:13:03 +0100 Subject: [PATCH] id128: change table header from "uuid" to just "id" The tool deals with any kind of 128bit id, not just uuid, and by default we display just a series of hex chars, hence let's not claim everything was a "uuid", but just generically say "id" --- src/id128/id128.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/id128/id128.c b/src/id128/id128.c index de74bac2c07..19435f80fea 100644 --- a/src/id128/id128.c +++ b/src/id128/id128.c @@ -87,7 +87,7 @@ static int show_one(Table **table, const char *name, sd_id128_t uuid, bool first } else { if (!*table) { - *table = table_new("name", "uuid"); + *table = table_new("name", "id"); if (!*table) return log_oom(); table_set_width(*table, 0); -- 2.47.3