diff options
Diffstat (limited to 'modules/devices.c')
-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; |