diff options
| author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 00:34:55 +0000 |
|---|---|---|
| committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 00:34:55 +0000 |
| commit | 780908b7567d712ebd866081760b91abcb03017c (patch) | |
| tree | 3a0476e60f03c8b21832b61d553c534e061ca2ad /src/demuxers/demux_avi.c | |
| parent | 71bd3ff4ab60d4ae510b1d7fb8d0ffe80f8c227d (diff) | |
| download | xine-lib-780908b7567d712ebd866081760b91abcb03017c.tar.gz xine-lib-780908b7567d712ebd866081760b91abcb03017c.tar.bz2 | |
Fix a lot of format warnings in lprintf calls (mostly %ldd -> %"PRId64").
CVS patchset: 8608
CVS date: 2007/02/20 00:34:55
Diffstat (limited to 'src/demuxers/demux_avi.c')
| -rw-r--r-- | src/demuxers/demux_avi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c index e0ed1a915..86af5eec5 100644 --- a/src/demuxers/demux_avi.c +++ b/src/demuxers/demux_avi.c @@ -19,7 +19,7 @@ */ /* - * $Id: demux_avi.c,v 1.229 2007/01/19 00:26:40 dgp85 Exp $ + * $Id: demux_avi.c,v 1.230 2007/02/20 00:34:55 dgp85 Exp $ * * demultiplexer for avi streams * @@ -1392,7 +1392,7 @@ static avi_t *AVI_init(demux_avi_t *this) { AVI->video_posf = 0; AVI->video_posb = 0; - lprintf("done, pos=%lld, AVI->movi_start=%" PRIdMAX "\n", this->input->get_current_pos(this->input), (intmax_t)AVI->movi_start); + lprintf("done, pos=%"PRId64", AVI->movi_start=%" PRIdMAX "\n", this->input->get_current_pos(this->input), (intmax_t)AVI->movi_start); return AVI; } |
