提交 4f316c02 authored 作者: Moises Silva's avatar Moises Silva

Merge pull request #124 in FS/freeswitch from…

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

* commit '382e683b':
  Use FTDM_UINT64_FMT macro to log uint64_t values, in order to not break x86 builds.
...@@ -1497,7 +1497,7 @@ static __inline__ int chan_is_avail(ftdm_channel_t *check) ...@@ -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;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论