summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skypekit/contact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Skype/src/skypekit/contact.cpp')
-rw-r--r--protocols/Skype/src/skypekit/contact.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skypekit/contact.cpp b/protocols/Skype/src/skypekit/contact.cpp
index 2030eba250..5cfecace38 100644
--- a/protocols/Skype/src/skypekit/contact.cpp
+++ b/protocols/Skype/src/skypekit/contact.cpp
@@ -35,7 +35,7 @@ bool CContact::GetFullname(SEString &firstName, SEString &lastName)
SEString fullname;
this->GetPropFullname(fullname);
int pos = fullname.find(" ");
- if (pos && pos < fullname.length())
+ if (pos && pos < (int)fullname.length())
{
firstName = fullname.substr(0, pos);
lastName = fullname.right(pos);