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 Mar 23, 2024
1 parent f405ed1 commit 175db25
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 @@ -7686,7 +7686,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 175db25

Please sign in to comment.