From fa043865c03f6c3a033c0576e4f2be980d27f4fa Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 12 Dec 2024 23:19:59 +0300 Subject: fix for mir_app headers --- protocols/Steam/src/steam_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/Steam/src') 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; } -- cgit v1.2.3