Skip to content

Commit

Permalink
C4NetIOUDP::DebugLogPkt: Add missing call to std::format
Browse files Browse the repository at this point in the history
  • Loading branch information
Fulgen301 committed Nov 29, 2024
1 parent 1904506 commit 6dd43e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/C4NetIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3563,7 +3563,7 @@ void C4NetIOUDP::DebugLogPkt(bool fOut, const C4NetIOPacket &Pkt)
}
}
}
output += " ({} bytes)\n", Pkt.getSize();
output += std::format(" ({} bytes)\n", Pkt.getSize());
write(hDebugLog, output.c_str(), output.size());
}

Expand Down

0 comments on commit 6dd43e5

Please sign in to comment.