git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10325 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-11-11 11:26:37 +00:00
parent e1417d42db
commit be091b64bd
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ SWITCH_DECLARE(void) switch_sleep(switch_interval_time_t t)
{
if (globals.use_cond_yield == 1) {
switch_cond_yield((t) / 1000);
switch_cond_yield((uint32_t)(t / 1000));
return;
}