FS-11189: [Build-System] Windows build regression fix.

This commit is contained in:
Andrey Volk 2018-07-24 17:46:38 +03:00
parent ea40876efd
commit 5c4211e43d
1 changed files with 1 additions and 1 deletions

View File

@ -1115,7 +1115,7 @@ static inline uint32_t switch_parse_cpu_string(const char *cpu)
if (divisor <= 0) divisor = 1;
ncpu = cpu_count / divisor;
ncpu = (int)(cpu_count / divisor);
if (ncpu <= 0) return 1;