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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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());
}
}