summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-03-15 16:02:06 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-03-15 16:02:06 +0300
commitec60bf5b0f03bfb4c310957e5eec9c17193c6c15 (patch)
tree8c57ad15e2435fedb24d12dfcb28dccbaf05c970 /protocols/SkypeWeb/src
parent8b5bf4464597453a75453f1a0bac151372722250 (diff)
db_get_sm / getStringA / getWStringA / getUStringA/ getMStringA / getMStringW - missing szValue parameter added
Diffstat (limited to 'protocols/SkypeWeb/src')
-rw-r--r--protocols/SkypeWeb/src/skype_chatrooms.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp
index cdab9bc6cd..c11f15dc80 100644
--- a/protocols/SkypeWeb/src/skype_chatrooms.cpp
+++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp
@@ -411,7 +411,7 @@ char* CSkypeProto::GetChatContactNick(const char *chat_id, const char *id, const
// Check if we have this contact in database
if (IsMe(id)) {
// Return my nick
- if (char *tname = getUStringA(NULL, "Nick"))
+ if (char *tname = getUStringA("Nick"))
return tname;
}
else {