summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx/svc_constants.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/UserInfoEx/svc_constants.h')
-rw-r--r--plugins/UserInfoEx/svc_constants.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/svc_constants.h b/plugins/UserInfoEx/svc_constants.h
index 575517cf82..2106f9fa3c 100644
--- a/plugins/UserInfoEx/svc_constants.h
+++ b/plugins/UserInfoEx/svc_constants.h
@@ -195,7 +195,7 @@ extern OBJLIST<CService> services;
static __inline HANDLE myCreateServiceFunction( const char * name, MIRANDASERVICE serviceProc)
{
CService* p = new CService(name,serviceProc);
- if(!p->m_hService){delete p; return 0;}
+ if (!p->m_hService){delete p; return 0;}
services.insert(p);
return p->m_hService;
}