Use FTDM_UINT64_FMT macro to log uint64_t values, in order to not break x86 builds.

This commit is contained in:
matteo brancaleoni 2014-11-25 15:38:45 +01:00
parent 061f3cb980
commit 382e683b15

View File

@ -1497,7 +1497,7 @@ static __inline__ int chan_is_avail(ftdm_channel_t *check)
}
/* circuit now available for outbound dialing */
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;
}