summaryrefslogtreecommitdiffstats
path: root/ProcessList.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2011-09-08 02:48:53 +0000
committerHisham Muhammad <hisham@gobolinux.org>2011-09-08 02:48:53 +0000
commitf7fe4b4722129a8444b2f07d2ef1ce9d2500e613 (patch)
tree735412c0093433cb71aeef3d78008b422b9bce26 /ProcessList.c
parent4e72e790e338ea806237ce22a82bc96a48b1ee04 (diff)
Fix off-by-one error in PROCESSOR display
Diffstat (limited to 'ProcessList.c')
-rw-r--r--ProcessList.c2
1 files changed, 1 insertions, 1 deletions
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
}*/

© 2014-2024 Faster IT GmbH | imprint | privacy policy