mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
FS-11189: [Build-System] Windows build regression fix.
This commit is contained in:
@@ -1115,7 +1115,7 @@ static inline uint32_t switch_parse_cpu_string(const char *cpu)
|
|||||||
|
|
||||||
if (divisor <= 0) divisor = 1;
|
if (divisor <= 0) divisor = 1;
|
||||||
|
|
||||||
ncpu = cpu_count / divisor;
|
ncpu = (int)(cpu_count / divisor);
|
||||||
|
|
||||||
if (ncpu <= 0) return 1;
|
if (ncpu <= 0) return 1;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user