diff options
Diffstat (limited to 'src/modules/metacontacts/meta_api.cpp')
-rw-r--r-- | src/modules/metacontacts/meta_api.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/modules/metacontacts/meta_api.cpp b/src/modules/metacontacts/meta_api.cpp index cfca0ed968..f1b0926ad1 100644 --- a/src/modules/metacontacts/meta_api.cpp +++ b/src/modules/metacontacts/meta_api.cpp @@ -32,10 +32,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. static INT_PTR MetaAPI_GetMostOnline(WPARAM hMetaContact, LPARAM)
{
DBCachedContact *cc = CheckMeta(hMetaContact);
- if (cc == NULL)
- return NULL;
-
- return Meta_GetMostOnline(cc);
+ return (cc == NULL) ? NULL : Meta_GetMostOnline(cc);
}
// wParam=(HANDLE)hContact
|