diff options
author | Torbjörn Andersson | 2004-03-28 15:04:48 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2004-03-28 15:04:48 +0000 |
commit | 0fb1d565890461836c9db73d6f9a7b4fe14485aa (patch) | |
tree | 05ef806c251d492b21bc90a1ee35de098880fdea /sound | |
parent | c831739c9c4a0b419111d8359f3d9200ad3962dc (diff) | |
download | scummvm-rg350-0fb1d565890461836c9db73d6f9a7b4fe14485aa.tar.gz scummvm-rg350-0fb1d565890461836c9db73d6f9a7b4fe14485aa.tar.bz2 scummvm-rg350-0fb1d565890461836c9db73d6f9a7b4fe14485aa.zip |
Format string fix.
svn-id: r13408
Diffstat (limited to 'sound')
-rw-r--r-- | sound/vorbis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/vorbis.cpp b/sound/vorbis.cpp index 370accccc9..4773823520 100644 --- a/sound/vorbis.cpp +++ b/sound/vorbis.cpp @@ -276,7 +276,7 @@ void VorbisInputStream::refill() { warning("Corrupted data in Vorbis file"); } else if (result <= 0) { if (result < 0) - debug(1, "Decode error %d in Vorbis file", result); + debug(1, "Decode error %ld in Vorbis file", result); // Don't delete it yet, that causes problems in // the CD player emulation code. memset(read_pos, 0, len_left); |