diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_xstatus.h')
-rw-r--r-- | protocols/JabberG/src/jabber_xstatus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_xstatus.h b/protocols/JabberG/src/jabber_xstatus.h index cf24554007..6caa4117b4 100644 --- a/protocols/JabberG/src/jabber_xstatus.h +++ b/protocols/JabberG/src/jabber_xstatus.h @@ -115,7 +115,7 @@ public: CPepService *Find(TCHAR *node)
{
for (int i=0; i < getCount(); i++)
- if ( !lstrcmp((*this)[i].GetNode(), node))
+ if (!lstrcmp((*this)[i].GetNode(), node))
return &((*this)[i]);
return NULL;
}
|