Skip to content

Commit

Permalink
Fix format string error
Browse files Browse the repository at this point in the history
  • Loading branch information
CupnPlateGames committed Feb 22, 2024
1 parent 5e21bad commit 9c4903a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multiint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7685,7 +7685,7 @@ static void printHostHelpMessagesToConsole()
char buf[512] = { '\0' };
if (!motd.isEmpty())
{
ssprintf(buf, motd.toUtf8().c_str());
ssprintf(buf, "%s", motd.toUtf8().c_str());
displayRoomNotifyMessage(buf);
}
if (challengeActive)
Expand Down

0 comments on commit 9c4903a

Please sign in to comment.