From f7fe4b4722129a8444b2f07d2ef1ce9d2500e613 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 8 Sep 2011 02:48:53 +0000 Subject: Fix off-by-one error in PROCESSOR display --- ProcessList.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ProcessList.c') diff --git a/ProcessList.c b/ProcessList.c index 2a01d8e1..c200eb91 100644 --- a/ProcessList.c +++ b/ProcessList.c @@ -55,7 +55,7 @@ in the source distribution for its full text. #endif #ifndef ProcessList_cpuId -#define ProcessList_cpuId(pl, cpu) ((pl)->countCPUsFromZero ? (cpu)-1 : (cpu)) +#define ProcessList_cpuId(pl, cpu) ((pl)->countCPUsFromZero ? (cpu) : (cpu)+1) #endif }*/ -- cgit v1.2.3