diff options
Diffstat (limited to 'protocols/Steam/src/steam_contacts.cpp')
-rw-r--r-- | protocols/Steam/src/steam_contacts.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Steam/src/steam_contacts.cpp b/protocols/Steam/src/steam_contacts.cpp index 64c98467de..13bfcba0a4 100644 --- a/protocols/Steam/src/steam_contacts.cpp +++ b/protocols/Steam/src/steam_contacts.cpp @@ -359,7 +359,7 @@ void CSteamProto::ProcessContact(std::map<std::string, JSONNODE*>::iterator *it, } } -void CSteamProto::OnGotFriendList(const NETLIBHTTPREQUEST *response, void *arg) +void CSteamProto::OnGotFriendList(const NETLIBHTTPREQUEST *response, void *) { if (response == NULL) return; @@ -444,7 +444,7 @@ void CSteamProto::OnGotFriendList(const NETLIBHTTPREQUEST *response, void *arg) } } -void CSteamProto::OnGotBlockList(const NETLIBHTTPREQUEST *response, void *arg) +void CSteamProto::OnGotBlockList(const NETLIBHTTPREQUEST *response, void *) { if (response == NULL) return; @@ -488,7 +488,7 @@ void CSteamProto::OnGotBlockList(const NETLIBHTTPREQUEST *response, void *arg) } } -void CSteamProto::OnGotUserSummaries(const NETLIBHTTPREQUEST *response, void *arg) +void CSteamProto::OnGotUserSummaries(const NETLIBHTTPREQUEST *response, void *) { if (response == NULL) return; @@ -753,7 +753,7 @@ void CSteamProto::OnSearchByIdEnded(const NETLIBHTTPREQUEST *response, void *arg json_delete(nodes); } -void CSteamProto::OnSearchByNameStarted(const NETLIBHTTPREQUEST *response, void *arg) +void CSteamProto::OnSearchByNameStarted(const NETLIBHTTPREQUEST *, void *) { } |