summaryrefslogtreecommitdiffstats
path: root/ProcessList.h
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.h
parent4e72e790e338ea806237ce22a82bc96a48b1ee04 (diff)
Fix off-by-one error in PROCESSOR display
Diffstat (limited to 'ProcessList.h')
-rw-r--r--ProcessList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ProcessList.h b/ProcessList.h
index ea8f71d0..c7bc5aca 100644
--- a/ProcessList.h
+++ b/ProcessList.h
@@ -57,7 +57,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