From dc461ca770c763aae6888269ce115d4890f95bc6 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sun, 12 Sep 2004 18:21:21 +0000 Subject: Fixed some other cases where the number of parameters to our message- printing functions didn't agree with the format strings. GCC will find a couple of other things to warn about if these functions are labelled as printf()-style functions, but those were less important, I think. svn-id: r15081 --- scumm/imuse_digi/dimuse_sndmgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scumm/imuse_digi') diff --git a/scumm/imuse_digi/dimuse_sndmgr.cpp b/scumm/imuse_digi/dimuse_sndmgr.cpp index 390553f6b6..3e555b8b99 100644 --- a/scumm/imuse_digi/dimuse_sndmgr.cpp +++ b/scumm/imuse_digi/dimuse_sndmgr.cpp @@ -419,7 +419,7 @@ int ImuseDigiSndMgr::getNumJumps(soundStruct *soundHandle) { } int ImuseDigiSndMgr::getRegionOffset(soundStruct *soundHandle, int region) { - debug(5, "getRegionOffset() region:%d"); + debug(5, "getRegionOffset() region:%d", region); assert(checkForProperHandle(soundHandle)); assert(region >= 0 && region < soundHandle->numRegions); return soundHandle->region[region].offset; -- cgit v1.2.3