Merge "Fix bug reporting CPU count." into jb-mr2-dev
diff --git a/cpu_ref/rsCpuCore.cpp b/cpu_ref/rsCpuCore.cpp
index c78b238..604f180 100644
--- a/cpu_ref/rsCpuCore.cpp
+++ b/cpu_ref/rsCpuCore.cpp
@@ -215,7 +215,7 @@
     // Subtract one from the cpu count because we also use the command thread as a worker.
     mWorkers.mCount = (uint32_t)(cpu - 1);
 
-    ALOGV("%p Launching thread(s), CPUs %i", mRSC, mWorkers.mCount);
+    ALOGV("%p Launching thread(s), CPUs %i", mRSC, mWorkers.mCount + 1);
 
     mWorkers.mThreadId = (pthread_t *) calloc(mWorkers.mCount, sizeof(pthread_t));
     mWorkers.mNativeThreadId = (pid_t *) calloc(mWorkers.mCount, sizeof(pid_t));