diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_caps.h')
-rwxr-xr-x | protocols/JabberG/src/jabber_caps.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_caps.h b/protocols/JabberG/src/jabber_caps.h index 7b7e5e1069..5ca995db67 100755 --- a/protocols/JabberG/src/jabber_caps.h +++ b/protocols/JabberG/src/jabber_caps.h @@ -312,7 +312,7 @@ struct JabberFeatCapPairExt LPCSTR szService;
int Valid() const
- { return (szService == NULL) ? true : ServiceExists(szService);
+ { return (szService == nullptr) ? true : ServiceExists(szService);
}
};
|