Commit 4c8e6a9f authored by Mark Barolak's avatar Mark Barolak
Browse files

Merge pull request #2810 from ptahmose:master

PiperOrigin-RevId: 306460738
parents 373d72b6 be3ac45c
...@@ -208,7 +208,7 @@ size_t GetThreadCount() { ...@@ -208,7 +208,7 @@ size_t GetThreadCount() {
// exclude empty members // exclude empty members
int nthreads = 0; int nthreads = 0;
for (int i = 0; i < size / mib[4]; i++) { for (size_t i = 0; i < size / mib[4]; i++) {
if (info[i].p_tid != -1) if (info[i].p_tid != -1)
nthreads++; nthreads++;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment