mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-06 18:30:01 +00:00
invalid type cast correction
This commit is contained in:
parent
65ca6ed024
commit
41b97031d7
@ -857,7 +857,7 @@ long sofia_reg_uniform_distribution(int max)
|
||||
int result;
|
||||
int range = max + 1;
|
||||
|
||||
srand((unsigned) switch_thread_self() + switch_micro_time_now());
|
||||
srand((intptr_t) switch_thread_self() + switch_micro_time_now());
|
||||
result = (int)((double)rand() / (((double)RAND_MAX + (double)1) / range));
|
||||
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG9, "Generated random %ld, max is %d\n", (long) result, max);
|
||||
|
Loading…
x
Reference in New Issue
Block a user