From 5e686292c537275c8ea1399f311c082d905e8a63 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 13 Jun 2012 17:26:45 +0000 Subject: code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@398 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/core/modules.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/core/modules.cpp') diff --git a/src/core/modules.cpp b/src/core/modules.cpp index 7c5c35b999..7b2a833c32 100644 --- a/src/core/modules.cpp +++ b/src/core/modules.cpp @@ -534,7 +534,7 @@ int UnhookEvent( HANDLE hHook ) p->subscriber[subscriberId].type = 0; p->subscriber[subscriberId].pfnHook = NULL; p->subscriber[subscriberId].hOwner = NULL; - while( p->subscriberCount && p->subscriber[p->subscriberCount-1].type == 0 ) + while ( p->subscriberCount && p->subscriber[p->subscriberCount-1].type == 0 ) p->subscriberCount--; if ( p->subscriberCount == 0 ) { if ( p->subscriber ) mir_free( p->subscriber ); @@ -671,18 +671,18 @@ int ServiceExists(const char *name) INT_PTR CallService(const char *name,WPARAM wParam,LPARAM lParam) { #ifdef _DEBUG - if (name==NULL) { + if (name == NULL) { MessageBoxA(0,"Someone tried to CallService(NULL,..) see stack trace for details","",0); DebugBreak(); return CALLSERVICE_NOTFOUND; } #else - if (name==NULL) return CALLSERVICE_NOTFOUND; + if (name == NULL) return CALLSERVICE_NOTFOUND; #endif EnterCriticalSection(&csServices); TService *pService = FindServiceByName(name); - if (pService==NULL) { + if (pService == NULL) { LeaveCriticalSection(&csServices); #ifdef _DEBUG //MessageBoxA(NULL,"Attempt to call non-existant service",name,MB_OK); @@ -721,7 +721,7 @@ INT_PTR CallServiceSync(const char *name, WPARAM wParam, LPARAM lParam) { extern HWND hAPCWindow; - if (name==NULL) return CALLSERVICE_NOTFOUND; + if (name == NULL) return CALLSERVICE_NOTFOUND; // the service is looked up within the main thread, since the time it takes // for the APC queue to clear the service being called maybe removed. // even thou it may exists before the call, the critsec can't be locked between calls. -- cgit v1.2.3