diff options
author | John Stebbins <[email protected]> | 2016-12-15 08:41:05 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-12-15 08:41:05 -0800 |
commit | 99155ee84e2031702eadd9cde68afbc04e68c4d0 (patch) | |
tree | 6a342ec3e7be687a5eed14619f5f1eb68823c61e | |
parent | ed9e73eb7ce9b9b0113a4ef6a697720f48c1f285 (diff) |
sync: fix compiler warning
-rw-r--r-- | libhb/sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/sync.c b/libhb/sync.c index 840533aa8..4d2e88a82 100644 --- a/libhb/sync.c +++ b/libhb/sync.c @@ -1735,7 +1735,7 @@ static int UpdateSCR( sync_stream_t * stream, hb_buffer_t * buf ) common->scr[hash].scr_offset = buf->s.start - (last_scr_pts + last_duration); hb_deep_log(4, - "New SCR: type %8s id %x scr seq %d scr offset %ld " + "New SCR: type %8s id %x scr seq %d scr offset %"PRId64" " "start %"PRId64" last %f dur %f", getStreamType(stream), getStreamId(stream), buf->s.scr_sequence, common->scr[hash].scr_offset, |