[Scummvm-git-logs] scummvm master -> e6c3b103c96822eb9212f743be63c998383f7c4f

digitall noreply at scummvm.org
Sat Sep 21 22:30:40 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
e6c3b103c9 AUDIO: Fix Empty Format String GCC Compiler Warning


Commit: e6c3b103c96822eb9212f743be63c998383f7c4f
    https://github.com/scummvm/scummvm/commit/e6c3b103c96822eb9212f743be63c998383f7c4f
Author: D G Turner (digitall at scummvm.org)
Date: 2024-09-21T23:29:06+01:00

Commit Message:
AUDIO: Fix Empty Format String GCC Compiler Warning

Changed paths:
    audio/mods/maxtrax.cpp


diff --git a/audio/mods/maxtrax.cpp b/audio/mods/maxtrax.cpp
index 5286e62ede3..0268fdd3ec1 100644
--- a/audio/mods/maxtrax.cpp
+++ b/audio/mods/maxtrax.cpp
@@ -1045,7 +1045,7 @@ void MaxTrax::outPutScore(const Score &sc, int num) {
 		debug(6, "score %2d: %i Events", num, sc.numEvents);
 	for (uint i = 0; i < sc.numEvents; ++i)
 		outPutEvent(sc.events[i], i);
-	debug(6, "");
+	debug(6, "%s", "");
 }
 
 } // End of namespace Audio




More information about the Scummvm-git-logs mailing list