summaryrefslogtreecommitdiff
path: root/protocols/Steam/src
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Steam/src')
-rw-r--r--protocols/Steam/src/steam_proto.cpp2
-rw-r--r--protocols/Steam/src/steam_proto.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Steam/src/steam_proto.cpp b/protocols/Steam/src/steam_proto.cpp
index a37c9521e0..38643c2f47 100644
--- a/protocols/Steam/src/steam_proto.cpp
+++ b/protocols/Steam/src/steam_proto.cpp
@@ -243,7 +243,7 @@ HANDLE CSteamProto::SearchByName(const wchar_t *nick, const wchar_t *firstName,
return (HANDLE)STEAM_SEARCH_BYNAME;
}
-int CSteamProto::SendMsg(MCONTACT hContact, int, const char *message)
+int CSteamProto::SendMsg(MCONTACT hContact, const char *message)
{
if (!IsOnline())
return -1;
diff --git a/protocols/Steam/src/steam_proto.h b/protocols/Steam/src/steam_proto.h
index 8b93aa0e7f..cdc4e3f6ff 100644
--- a/protocols/Steam/src/steam_proto.h
+++ b/protocols/Steam/src/steam_proto.h
@@ -278,7 +278,7 @@ public:
HANDLE SearchBasic(const wchar_t *id) override;
HANDLE SearchByName(const wchar_t *nick, const wchar_t *firstName, const wchar_t *lastName) override;
- int SendMsg(MCONTACT hContact, int flags, const char *msg) override;
+ int SendMsg(MCONTACT hContact, const char *msg) override;
int SetStatus(int iNewStatus) override;