diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-16 17:51:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-16 17:51:37 +0000 |
commit | 3d3376688a7a7ff1fe7838d350b31412c42d5ccd (patch) | |
tree | c135b13a26d93a4fea71e1bfbc38233783b214d6 /plugins/CmdLine/src/mimcmd_ipc.cpp | |
parent | d4ac653c0b8d6f474efea04127267ad6a54ced6d (diff) |
fix for mimcmd vs2010 project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14213 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CmdLine/src/mimcmd_ipc.cpp')
-rw-r--r-- | plugins/CmdLine/src/mimcmd_ipc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CmdLine/src/mimcmd_ipc.cpp b/plugins/CmdLine/src/mimcmd_ipc.cpp index 7ebbfc6cbf..f61b70eb82 100644 --- a/plugins/CmdLine/src/mimcmd_ipc.cpp +++ b/plugins/CmdLine/src/mimcmd_ipc.cpp @@ -65,7 +65,7 @@ int CreateSystemEvents() heServerClose = CreateEventA(NULL, FALSE, FALSE, EVENT_SERVER_CLOSE);
heServerBufferFull = CreateEventA(NULL, FALSE, FALSE, EVENT_SERVER_BUFFERFULL);
- return ((heServerExec == NULL) || (heServerDone == NULL) || (heServerClose == NULL) || (heServerBufferFull == NULL));
+ return (heServerExec == NULL) || (heServerDone == NULL) || (heServerClose == NULL) || (heServerBufferFull == NULL);
}
int CreateMutexes()
|