From ee87203426eeaa36e41a8f33d417388ae32543ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 14 Nov 2010 11:29:50 +0000 Subject: [PATCH] * Start numbering the CPUs with 1 instead of 0. This closes ticket #6816. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39426 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/activitymonitor/DataSource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/activitymonitor/DataSource.cpp b/src/apps/activitymonitor/DataSource.cpp index 5268167198..dca413e87a 100644 --- a/src/apps/activitymonitor/DataSource.cpp +++ b/src/apps/activitymonitor/DataSource.cpp @@ -870,7 +870,7 @@ CPUUsageDataSource::_SetCPU(int32 cpu) fCPU = cpu; fLabel = "CPU"; if (SystemInfo().CPUCount() > 1) - fLabel << " " << cpu; + fLabel << " " << cpu + 1; fShortLabel = fLabel; fLabel << " usage";