From a0c85b1e4610216f0d324d85c1fc6e26b5596ec7 Mon Sep 17 00:00:00 2001 From: Tom Finegan Date: Wed, 5 Feb 2014 18:50:00 -0800 Subject: [PATCH] mkvparser/sample: Fix incorrect printf format specifiers. Change-Id: I8b61f429f7bb1da7b3def612f6413895f8cb945d --- sample.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample.cpp b/sample.cpp index 1a12383..0a6e8fa 100644 --- a/sample.cpp +++ b/sample.cpp @@ -321,8 +321,8 @@ int main(int argc, char* argv[]) { if (track_pos != NULL) { const char track_type = (track->GetType() == mkvparser::Track::kVideo) ? 'V' : 'A'; - printf("\t\t\tCue Point %4d Track %3u(%c) Time %14lld " - "Block %4lld Pos %8x\n", + printf("\t\t\tCue Point %4d Track %3lu(%c) Time %14lld " + "Block %4lld Pos %8llx\n", cue_point_num, track_num, track_type, cue->GetTime(pSegment.get()),