Format string fix.

svn-id: r13408
This commit is contained in:
Torbjörn Andersson 2004-03-28 15:04:48 +00:00
parent c831739c9c
commit 0fb1d56589
2 changed files with 2 additions and 2 deletions

View File

@ -1391,7 +1391,7 @@ int32 Insane::smush_setupSanWithFlu(const char *filename, int32 setupsan2, int32
byte *tmp = fluPtr;
int32 offset;
debugC(DEBUG_INSANE, "smush_setupSanWithFlu(%s, %d, %d, %d, %d, %lx, %d)", filename, setupsan2,
debugC(DEBUG_INSANE, "smush_setupSanWithFlu(%s, %d, %d, %d, %d, %p, %d)", filename, setupsan2,
step1, step2, setupsan1, fluPtr, numFrames);
_smush_setupsan1 = setupsan1;

View File

@ -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);