Skip to content

Commit

Permalink
MT#55283 fix compile warning
Browse files Browse the repository at this point in the history
Use appropriate print format

Change-Id: I6fca4ca7346ee9de3b5ce8a9618bde327e0ed979
(cherry picked from commit bf7039a)
(cherry picked from commit 77782d6)
  • Loading branch information
rfuchs committed Sep 17, 2024
1 parent 741f6ac commit 43f15cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion daemon/dtmf.c
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,9 @@ int dtmf_event_payload(str *buf, uint64_t *pts, uint64_t duration, struct dtmf_e
// if the start event ts was before *pts we need
// to adjust the end event_ts to ensure we're not shortening
// the event
ilog(LOG_DEBUG, "Delayed send of DTMF, adjusting end event_ts by %lu - %lu = %lu", *pts, cur_event->ts, *pts - cur_event->ts);
ilog(LOG_DEBUG, "Delayed send of DTMF, adjusting end event_ts by "
"%" PRIu64 " - %" PRIu64 " = %" PRIu64,
*pts, cur_event->ts, *pts - cur_event->ts);
ev->ts += *pts - cur_event->ts;
}
cur_event->ts = *pts; // canonicalise start TS
Expand Down

0 comments on commit 43f15cd

Please sign in to comment.