diff options
| author | Dave Chapman <dave@dchapman.com> | 2007-03-26 19:54:07 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2007-03-26 19:54:07 +0000 |
| commit | f2df5b5b53206d09b72a2e9d0b5de1d50ea7633c (patch) | |
| tree | 509e0c11a8c17a84a74d08100269491dad383b8e /apps/plugins | |
| parent | 704b7937879c3ae81e6bb2e3bb14b487bd6f90d4 (diff) | |
| download | rockbox-f2df5b5b53206d09b72a2e9d0b5de1d50ea7633c.zip rockbox-f2df5b5b53206d09b72a2e9d0b5de1d50ea7633c.tar.gz rockbox-f2df5b5b53206d09b72a2e9d0b5de1d50ea7633c.tar.bz2 rockbox-f2df5b5b53206d09b72a2e9d0b5de1d50ea7633c.tar.xz | |
Those pesky 64-bit simulator builds..
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12931 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/mpegplayer/mpegplayer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c index fec032a..a30bce7 100644 --- a/apps/plugins/mpegplayer/mpegplayer.c +++ b/apps/plugins/mpegplayer/mpegplayer.c @@ -626,7 +626,7 @@ static void audio_thread(void) if ((audio_str.first_pts != 0) && (video_str.first_pts != 0)) { avdelay = ((audio_str.first_pts - video_str.first_pts)*44100)/90000; found_avdelay = 1; - DEBUGF("First Audio PTS = %lu, First Video PTS=%lu, A-V=%d samples\n",audio_str.first_pts,video_str.first_pts,avdelay); + DEBUGF("First Audio PTS = %u, First Video PTS=%u, A-V=%d samples\n",(unsigned int)audio_str.first_pts,(unsigned int)video_str.first_pts,avdelay); } } |