Browse Source

Minor android compile fix.

tags/2021-05-28
jules 10 years ago
parent
commit
9d9f94cadd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/native/juce_android_SystemStats.cpp

+ 1
- 1
modules/juce_core/native/juce_android_SystemStats.cpp View File

@@ -278,7 +278,7 @@ String SystemStats::getDisplayLanguage() { return getUserLanguage() + "-" + getU
//==============================================================================
void CPUInformation::initialise() noexcept
{
numCpus = jmax (1, sysconf (_SC_NPROCESSORS_ONLN));
numCpus = jmax (1, (int) sysconf (_SC_NPROCESSORS_ONLN));
}
//==============================================================================


Loading…
Cancel
Save