[Scummvm-git-logs] scummvm master -> 66d22de56c27e0a15a3daa24881387e9a983e52c

digitall noreply at scummvm.org
Fri Aug 30 01:12:54 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:
66d22de56c MTROPOLIS: Fix Zero Length Format String GCC Compiler Warnings


Commit: 66d22de56c27e0a15a3daa24881387e9a983e52c
    https://github.com/scummvm/scummvm/commit/66d22de56c27e0a15a3daa24881387e9a983e52c
Author: D G Turner (digitall at scummvm.org)
Date: 2024-08-30T02:12:44+01:00

Commit Message:
MTROPOLIS: Fix Zero Length Format String GCC Compiler Warnings

Changed paths:
    engines/mtropolis/boot.cpp


diff --git a/engines/mtropolis/boot.cpp b/engines/mtropolis/boot.cpp
index e9a415a7515..1f7e9c152d9 100644
--- a/engines/mtropolis/boot.cpp
+++ b/engines/mtropolis/boot.cpp
@@ -2820,14 +2820,14 @@ BootConfiguration bootProject(const MTropolisGameDescription &gameDesc) {
 				debug("    %s%c%s", arcJunction._archiveName.c_str(), pathSeparator, archiveMember->getPathInArchive().toString(pathSeparator).c_str());
 			}
 
-			debug("");
+			debug("%s", "");
 		}
 
 		debug("Virtual-to-physical path mappings:");
 		for (const VirtualFileSystemLayout::PathJunction &pathJunction : vfsLayout._pathJunctions) {
 			debug("    %s -> %s", pathJunction._srcPath.c_str(), pathJunction._destPath.c_str());
 		}
-		debug("");
+		debug("%s", "");
 
 		debug("Exclusions:");
 
@@ -2837,7 +2837,7 @@ BootConfiguration bootProject(const MTropolisGameDescription &gameDesc) {
 		for (const Common::String &str : vfsLayout._exclusions)
 			debug("    %s", str.c_str());
 
-		debug("");
+		debug("%s", "");
 	}
 
 	Common::SharedPtr<VirtualFileSystem> vfs(new VirtualFileSystem(bootScriptContext.getVFSLayout()));




More information about the Scummvm-git-logs mailing list