Fix incorrect string_view usage in log message

and I somehow forgot the semicolon
This commit is contained in:
Tixx
2026-08-02 13:18:59 +02:00
parent 901b7df809
commit 44211e7235
+1 -1
View File
@@ -63,7 +63,7 @@ bool CheckBytes(uint32_t Bytes) {
void GameSend(std::string_view Data) { void GameSend(std::string_view Data) {
if (!GConnected) { if (!GConnected) {
debug("Tried to call GameSend but socket was not connected. Data: " + Data) debug("Tried to call GameSend but socket was not connected. Data: " + std::string(Data));
return; return;
} }
static std::mutex Lock; static std::mutex Lock;