Merge pull request #124 in FS/freeswitch from ~MBRANCA/freeswitch:bugfix/OPENZAP-233-compilation-broken-on-x86-systems to master

* commit '382e683b15748473e1c06774f0b8bc56cc7210f2':
  Use FTDM_UINT64_FMT macro to log uint64_t values, in order to not break x86 builds.
This commit is contained in:
Moises Silva 2014-11-26 09:46:48 -06:00
commit 4f316c02c7
1 changed files with 1 additions and 1 deletions

View File

@ -1497,7 +1497,7 @@ static __inline__ int chan_is_avail(ftdm_channel_t *check)
} }
/* circuit now available for outbound dialing */ /* circuit now available for outbound dialing */
check->last_release_time = 0; check->last_release_time = 0;
ftdm_log_chan(check, FTDM_LOG_DEBUG, "Channel is now available, release guard timer expired %zdms ago\n", (time_diff - check->span->sig_release_guard_time_ms)); ftdm_log_chan(check, FTDM_LOG_DEBUG, "Channel is now available, release guard timer expired %" FTDM_UINT64_FMT "ms ago\n", (time_diff - check->span->sig_release_guard_time_ms));
} }
return 1; return 1;
} }