diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-21 19:25:14 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-21 19:25:14 +0000 |
commit | b4caa062df453412e7cafa5b96afab0b0c3a2940 (patch) | |
tree | 1bc9525da82181a285cfd80f57fc0ac5975a59d4 /protocols/JabberG/src/jabber_caps.cpp | |
parent | 9f8f69354030860c05e3c89b8050723a135b74f4 (diff) |
some unused variables & functions
git-svn-id: http://svn.miranda-ng.org/main/trunk@6169 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_caps.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_caps.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_caps.cpp b/protocols/JabberG/src/jabber_caps.cpp index 252042966a..083baf3001 100644 --- a/protocols/JabberG/src/jabber_caps.cpp +++ b/protocols/JabberG/src/jabber_caps.cpp @@ -179,7 +179,7 @@ void CJabberProto::OnIqResultCapsDiscoInfo(HXML, CJabberIqInfo* pInfo) JabberCapsBits CJabberProto::GetTotalJidCapabilites(const TCHAR *jid)
{
- if ( !jid)
+ if (jid == NULL)
return JABBER_RESOURCE_CAPS_NONE;
TCHAR szBareJid[JABBER_MAX_JID_LEN];
|