MT#55283 fix compile warning

Use appropriate print format

Change-Id: I6fca4ca7346ee9de3b5ce8a9618bde327e0ed979
(cherry picked from commit bf7039a39f)
(cherry picked from commit 77782d6ae0)
mr12.5.1
Richard Fuchs 8 months ago
parent 741f6ac963
commit 43f15cd8e3

@ -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 // if the start event ts was before *pts we need
// to adjust the end event_ts to ensure we're not shortening // to adjust the end event_ts to ensure we're not shortening
// the event // 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; ev->ts += *pts - cur_event->ts;
} }
cur_event->ts = *pts; // canonicalise start TS cur_event->ts = *pts; // canonicalise start TS

Loading…
Cancel
Save