diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-11-19 16:07:50 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-11-19 16:07:50 +0000 |
commit | 317be7d30576ccede072c9b5f0637155516b395e (patch) | |
tree | a4f38d13435ebd68f1d9caabbb18746ef108bd97 /src | |
parent | 9c9b27d1358a039d64797a394f6662f17d31f0fa (diff) | |
download | xine-lib-317be7d30576ccede072c9b5f0637155516b395e.tar.gz xine-lib-317be7d30576ccede072c9b5f0637155516b395e.tar.bz2 |
Fix warning.
CVS patchset: 8384
CVS date: 2006/11/19 16:07:50
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/demux_film.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_film.c b/src/demuxers/demux_film.c index e5d175cec..f4a27c22b 100644 --- a/src/demuxers/demux_film.c +++ b/src/demuxers/demux_film.c @@ -21,7 +21,7 @@ * For more information on the FILM file format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: demux_film.c,v 1.80 2006/09/11 05:55:49 tmmm Exp $ + * $Id: demux_film.c,v 1.81 2006/11/19 16:07:50 dgp85 Exp $ */ #ifdef HAVE_CONFIG_H @@ -311,7 +311,7 @@ static int open_film_file(demux_film_t *film) { if (film->sample_table[j].pts > largest_pts) largest_pts = film->sample_table[j].pts; - llprintf(DEBUG_FILM_LOAD, "sample %4d @ %8" PRIxMAX ", %8X bytes, %s, pts %lld, duration %" PRId64 "%s\n", + llprintf(DEBUG_FILM_LOAD, "sample %4d @ %8" PRIxMAX ", %8X bytes, %s, pts %" PRId64 ", duration %" PRId64 "%s\n", j, (intmax_t)film->sample_table[j].sample_offset, film->sample_table[j].sample_size, |