Misc: Warning fixes

This commit is contained in:
Stenzek
2023-09-30 15:44:14 +10:00
parent e6bfcf22d9
commit c1e6616e5f
2 changed files with 6 additions and 2 deletions

View File

@ -91,7 +91,7 @@ void GDBConnection::onEmulationResumed()
void GDBConnection::writePacket(std::string_view packet)
{
Log_DebugPrintf("(%" PRIdPTR ") < %*s", m_descriptor, packet.length(), packet.data());
Log_DebugPrintf("(%" PRIdPTR ") < %.*s", m_descriptor, static_cast<int>(packet.length()), packet.data());
if (write(packet.data(), packet.length()) == -1)
{
Log_ErrorPrintf("(%" PRIdPTR ") Failed to write to socket: %s", m_descriptor,