diff options
author | George Hazan <george.hazan@gmail.com> | 2014-10-06 21:56:06 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-10-06 21:56:06 +0000 |
commit | 251e7759f31dbf3c8a199766b5d341342af77992 (patch) | |
tree | 6856490e7a7c143ba1209806c36d78e934449cca /src | |
parent | 2d3c12705af56c168c6a1c957526248c80d2a8cf (diff) |
wrong condition in account's remover
git-svn-id: http://svn.miranda-ng.org/main/trunk@10721 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/protocols/protoaccs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/protocols/protoaccs.cpp b/src/modules/protocols/protoaccs.cpp index 46917b38bf..4067068cad 100644 --- a/src/modules/protocols/protoaccs.cpp +++ b/src/modules/protocols/protoaccs.cpp @@ -495,7 +495,7 @@ static int DeactivationThread(DeactivationThreadParam* param) char *szModuleName = NEWSTR_ALLOCA(p->m_szModuleName);
if (param->bIsDynamic) {
- while (p->OnEvent(EV_PROTO_ONREADYTOEXIT, 0, 0) != 0)
+ while (p->OnEvent(EV_PROTO_ONREADYTOEXIT, 0, 0) != TRUE)
SleepEx(100, TRUE);
p->OnEvent(EV_PROTO_ONEXIT, 0, 0);
|