Browse Source

Fix indentation

nordsoft 3 years ago
parent
commit
8d6a2e4383
1 changed files with 1 additions and 1 deletions
  1. 1 1
      launcher/lobby/lobby.cpp

+ 1 - 1
launcher/lobby/lobby.cpp

@@ -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);