diff options
Diffstat (limited to 'protocols/Tox/src/tox_connection.cpp')
-rw-r--r-- | protocols/Tox/src/tox_connection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_connection.cpp b/protocols/Tox/src/tox_connection.cpp index 9b7c40f39d..a602bb88a9 100644 --- a/protocols/Tox/src/tox_connection.cpp +++ b/protocols/Tox/src/tox_connection.cpp @@ -58,7 +58,7 @@ void CToxProto::CheckConnection() } } -void CToxProto::OnToxCheck(void *arg, BYTE) +void CToxProto::OnToxCheck(void *arg, uint8_t) { CToxProto *proto = (CToxProto*)arg; if (proto->m_tox == nullptr) @@ -71,7 +71,7 @@ void CToxProto::OnToxCheck(void *arg, BYTE) proto->CheckConnection(); } -void CToxProto::OnToxPoll(void *arg, BYTE) +void CToxProto::OnToxPoll(void *arg, uint8_t) { CToxProto *proto = (CToxProto*)arg; if (proto->m_tox) |