From b0f1336f79e5f07f591e05ceec13637b7452a15c Mon Sep 17 00:00:00 2001 From: Bert Wesarg Date: Mon, 31 Aug 2020 22:05:01 +0200 Subject: affinity panel: show CPUs in the topology tree as `CPU x` As it is in the non-topology list. --- AffinityPanel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AffinityPanel.c b/AffinityPanel.c index 23f0ca80..91a9d456 100644 --- a/AffinityPanel.c +++ b/AffinityPanel.c @@ -260,7 +260,7 @@ static HandlerResult AffinityPanel_eventHandler(Panel* super, int ch) { static MaskItem *AffinityPanel_addObject(AffinityPanel* this, hwloc_obj_t obj, unsigned indent, MaskItem *parent) { const char* type_name = hwloc_obj_type_string(obj->type); - const char* index_prefix = " #"; + const char* index_prefix = "#"; unsigned depth = obj->depth; unsigned index = obj->logical_index; size_t off = 0, left = 10 * depth; @@ -286,7 +286,7 @@ static MaskItem *AffinityPanel_addObject(AffinityPanel* this, hwloc_obj_t obj, u off += len, left -= len; } - xSnprintf(buf, 64, "%s%s%u", type_name, index_prefix, index); + xSnprintf(buf, 64, "%s %s%u", type_name, index_prefix, index); MaskItem *item = MaskItem_newMask(buf, indent_buf, obj->complete_cpuset, false); if (parent) -- cgit v1.2.3