From 9f5c43d8a66046b9ab43ed5a50b2bebeaaf649b3 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 22 Sep 2003 11:08:13 +0000 Subject: [PATCH] Fix warnings. No seriously, do it this time. --- stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp b/stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp index ce830bd5c9..ad1538db85 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp @@ -158,7 +158,7 @@ void RageSound_QT1::StartMixing(RageSound *snd) { LockMutex L(SOUNDMAN->lock); sounds.push_back(s); - LOG->Trace("There are %u sounds playing", sounds.size()); + LOG->Trace("There are %ld sounds playing", sounds.size()); } void RageSound_QT1::StopMixing(RageSound *snd) { @@ -176,7 +176,7 @@ void RageSound_QT1::StopMixing(RageSound *snd) { delete sounds[i]; sounds.erase(sounds.begin()+i, sounds.begin()+i+1); - LOG->Trace("There are %u sounds playing", sounds.size()); + LOG->Trace("There are %ld sounds playing", sounds.size()); } void RageSound_QT1::Update(float delta) {