diff options
| author | Ondrej Čerman <ondrej.cerman@gmail.com> | 2021-11-02 21:04:02 +0100 | 
|---|---|---|
| committer | L Pereira <l@tia.mat.br> | 2021-11-07 22:48:30 -0800 | 
| commit | 3de44158b34333b2140eddaa3ce8a306b7424004 (patch) | |
| tree | a5c310f8927eee14999317a862e24733f30909fe /modules | |
| parent | 78dbd1bf5189a040c105ae05d1c0d2d414375ca8 (diff) | |
modules/devices: fixed CPU topology string when nodes == 1
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/devices.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/devices.c b/modules/devices.c index 0f33af48..1672d550 100644 --- a/modules/devices.c +++ b/modules/devices.c @@ -186,7 +186,7 @@ gchar *processor_describe_default(GSList * processors)              ret = g_strdup_printf(full_fmt, packs, cores * nodes, nodes, threads);          } else {              full_fmt = g_strdup_printf(_(/*/NP procs; NC cores; NT threads*/ "%s; %s; %s"), packs_fmt, cores_fmt, threads_fmt); -            ret = g_strdup_printf(full_fmt, packs, cores, nodes, threads); +            ret = g_strdup_printf(full_fmt, packs, cores, threads);          }          g_free(full_fmt);          return ret; | 
