From 9d9f94cadd06adcd80308d1a53bcc42d7e86b159 Mon Sep 17 00:00:00 2001 From: jules Date: Sat, 13 Dec 2014 12:34:18 +0000 Subject: [PATCH] Minor android compile fix. --- modules/juce_core/native/juce_android_SystemStats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/native/juce_android_SystemStats.cpp b/modules/juce_core/native/juce_android_SystemStats.cpp index 8223b892c5..b0123815eb 100644 --- a/modules/juce_core/native/juce_android_SystemStats.cpp +++ b/modules/juce_core/native/juce_android_SystemStats.cpp @@ -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)); } //==============================================================================