diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-06-25 19:22:17 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-06-25 19:22:17 +0000 |
commit | cc6abc9eed963a2659c121ddec136f1ab4256535 (patch) | |
tree | 86b327c2aad128cf6ac53addd67f9f6175fe7833 /protocols/Yahoo/src/server.cpp | |
parent | c5de45b42456d1ed5250e477e70d9ea4001f4441 (diff) |
- Set wparam and lParam to 0 as default arg in CallService and others, to simplify some code
git-svn-id: http://svn.miranda-ng.org/main/trunk@14385 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src/server.cpp')
-rw-r--r-- | protocols/Yahoo/src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Yahoo/src/server.cpp b/protocols/Yahoo/src/server.cpp index c9b742fb2a..385eed93ba 100644 --- a/protocols/Yahoo/src/server.cpp +++ b/protocols/Yahoo/src/server.cpp @@ -110,7 +110,7 @@ void __cdecl CYahooProto::server_main(void *empty) debugLogA("Last connection closed.");
break;
}
- recvResult = CallService(MS_NETLIB_SELECTEX, (WPARAM)0, (LPARAM)&nls);
+ recvResult = CallService(MS_NETLIB_SELECTEX, 0, (LPARAM)&nls);
/* do the timer check */
if (m_id > 0) {
|