diff options
author | George Hazan <george.hazan@gmail.com> | 2024-12-12 23:19:59 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-12-12 23:19:59 +0300 |
commit | fa043865c03f6c3a033c0576e4f2be980d27f4fa (patch) | |
tree | c57eaf0103d541aba3b5786eee6c2ebd6272846e /protocols/Steam/src | |
parent | 380926ccdcf81adfcdad0b104253b361dd544754 (diff) |
fix for mir_app headers
Diffstat (limited to 'protocols/Steam/src')
-rw-r--r-- | protocols/Steam/src/steam_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_server.cpp b/protocols/Steam/src/steam_server.cpp index 25ba12f7b6..c2b43e5b88 100644 --- a/protocols/Steam/src/steam_server.cpp +++ b/protocols/Steam/src/steam_server.cpp @@ -112,7 +112,7 @@ void CSteamProto::ProcessMulti(const uint8_t *buf, size_t cbLen) while ((int)cbLen > 0) { uint32_t cbPacketLen = *(uint32_t *)buf; buf += sizeof(uint32_t); cbLen -= sizeof(uint32_t); - Netlib_Dump(m_ws->getConn(), buf, cbLen, false, 0); + Netlib_Dump(HNETLIBCONN(m_ws->getConn()), buf, cbLen, false, 0); ProcessMessage(buf, cbPacketLen); buf += cbPacketLen; cbLen -= cbPacketLen; } |