MT#55283 fix int size issues

Change-Id: Ibd7bdea16ae57a4a86076a05b22bb3ca64be8ce1
(cherry picked from commit 675eb7bea6)
(cherry picked from commit f5620802c9)
(cherry picked from commit 0f2c5bc527)
mr11.5.1
Richard Fuchs 4 months ago
parent 7edda0ff90
commit 6c42c188f8

@ -3271,7 +3271,7 @@ static void __dtx_send_later(struct codec_timer *ct) {
dtxb->head_ts, ts, ts_diff_us);
else if (ts_diff >= dtxb->tspp * 2) {
ilogs(dtx, LOG_DEBUG, "First packet in DTX buffer not ready yet (packet TS %lu, "
"DTX TS %lu, diff %li)",
"DTX TS %lu, diff %ld)",
ts, dtxb->head_ts, ts_diff);
dtxp = NULL;
}

@ -212,7 +212,7 @@ static void *notify_timer(void *p) {
gettimeofday(&now, NULL);
if (now.tv_sec < first->retry_time) {
ilog(LOG_DEBUG, "Sleeping until next scheduled HTTP notification retry in %lu seconds",
(unsigned long) first->retry_time - now.tv_sec);
(unsigned long) (first->retry_time - now.tv_sec));
struct timespec ts = {.tv_sec = first->retry_time, .tv_nsec = 0};
pthread_cond_timedwait(&timer_cond, &timer_lock, &ts);
continue;

Loading…
Cancel
Save