Fix printf warning. (PR #1118)

This commit is contained in:
Andrea
2022-06-24 23:00:31 +02:00
committed by GitHub
parent 6f71cffcdd
commit 1095186c0c
+2 -2
View File
@@ -521,8 +521,8 @@ void __stdcall Disk2InterfaceCard::ControlStepper(WORD, WORD address, BYTE, BYTE
{
// take no action - can't find any titles that ever do this!
const std::string msg = "Disk: ControlStepper() - adjacent magnets turned on\n";
LogOutput(msg.c_str());
LogFileOutput(msg.c_str());
LogOutput("%s", msg.c_str());
LogFileOutput("%s", msg.c_str());
}
}