Browse Source

MT#55283 fix int size issues

Change-Id: Ibd7bdea16ae57a4a86076a05b22bb3ca64be8ce1
(cherry picked from commit 675eb7bea6)
mr12.5
Richard Fuchs 4 months ago
parent
commit
f5620802c9
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      daemon/codec.c
  2. +1
    -1
      recording-daemon/notify.c

+ 1
- 1
daemon/codec.c View File

@ -3373,7 +3373,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;
}


+ 1
- 1
recording-daemon/notify.c View File

@ -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