1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-09-16 09:26:28 +02:00

Fix indentation

This commit is contained in:
nordsoft
2022-11-15 06:11:51 +04:00
parent 50a157bfd2
commit 8d6a2e4383

View File

@@ -67,7 +67,7 @@ void SocketLobby::requestReadySession(const QString & session)
void SocketLobby::send(const QString & msg)
{
QByteArray str = msg.toUtf8();
QByteArray str = msg.toUtf8();
int sz = str.size();
QByteArray pack((const char *)&sz, sizeof(sz));
pack.append(str);