From da510d34a65b13f159c4a3c66004e27206024390 Mon Sep 17 00:00:00 2001 From: Cesare Tirabassi Date: Sun, 31 Jan 2010 11:57:09 +0100 Subject: [PATCH] Extend commit 25680305095bfcedaa46cb017182544183ab743b to the whole cpu object. This is still a workaround, the underlining starvation issue remains unsolved. (cherry picked from commit 99fd8ef38080a873bee67cd7742e5c67048aeb63) --- src/conky.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/conky.c b/src/conky.c index d31698f..50cbb2a 100644 --- a/src/conky.c +++ b/src/conky.c @@ -898,12 +898,12 @@ void generate_text_internal(char *p, int p_max_size, print_cmdline_to_pid(obj, p, p_max_size); } OBJ(cpu) { - if (obj->data.i > info.cpu_count) { - NORM_ERR("obj->data.i %i info.cpu_count %i", - obj->data.i, info.cpu_count); - CRIT_ERR(NULL, NULL, "attempting to use more CPUs than you have!"); - } if (cur->cpu_usage) { + if (obj->data.i > info.cpu_count) { + NORM_ERR("obj->data.i %i info.cpu_count %i", + obj->data.i, info.cpu_count); + CRIT_ERR(NULL, NULL, "attempting to use more CPUs than you have!"); + } percent_print(p, p_max_size, round_to_int(cur->cpu_usage[obj->data.i] * 100.0)); } -- 1.7.9.5