Commit 672c6805 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing space before string constant

parent f0e29749
......@@ -1886,7 +1886,7 @@ static int Demux( demux_t *p_demux )
else
i_pts = VLC_TS_INVALID;
#if 0
msg_Dbg( p_demux, "Read() stream: %i, size: %i, PTS: %"PRId64,
msg_Dbg( p_demux, "Read() stream: %i, size: %i, PTS: %" PRId64,
i_stream, i_data_size, i_pts );
#endif
......
......@@ -224,7 +224,7 @@ void matroska_segment_c::LoadCues( KaxCues *cues )
ep->Up();
#if 0
msg_Dbg( &sys.demuxer, " * added time=%"PRId64" pos=%"PRId64
msg_Dbg( &sys.demuxer, " * added time=%" PRId64 " pos=%" PRId64
" track=%d bnum=%d", idx.i_time, idx.i_position,
idx.i_track, idx.i_block_number );
#endif
......
......@@ -614,7 +614,7 @@ bool virtual_chapter_c::Leave( bool b_do_subs )
#ifdef MKV_DEBUG
void virtual_chapter_c::print()
{
msg_Dbg( &p_segment->sys.demuxer, "*** chapter %"PRId64" - %"PRId64" (%u)",
msg_Dbg( &p_segment->sys.demuxer, "*** chapter %" PRId64 " - %" PRId64 " (%u)",
i_mk_virtual_start_time, i_mk_virtual_stop_time, sub_chapters.size() );
for( size_t i = 0; i < sub_chapters.size(); i++ )
sub_chapters[i]->print();
......
......@@ -652,7 +652,7 @@ static void DisplayVideo(vout_display_t *vd, picture_t *picture, subpicture_t *)
picture->date, length, CLOCK_FREQ);
if (result != S_OK) {
msg_Err(vd, "Dropped Video frame %"PRId64 ": 0x%x",
msg_Err(vd, "Dropped Video frame %" PRId64 ": 0x%x",
picture->date, result);
goto end;
}
......@@ -666,7 +666,7 @@ static void DisplayVideo(vout_display_t *vd, picture_t *picture, subpicture_t *)
if ((now - decklink_now) > 400000) {
/* XXX: workaround card clock drift */
decklink_sys->offset += 50000;
msg_Err(vd, "Delaying: offset now %"PRId64"", decklink_sys->offset);
msg_Err(vd, "Delaying: offset now %" PRId64, decklink_sys->offset);
}
end:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment