diff options
| author | Vincent Richard <[email protected]> | 2012-11-30 08:41:35 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2012-11-30 08:41:35 +0000 |
| commit | f2c94976be09f2e992e99ad3db470a4998a4d174 (patch) | |
| tree | 7514f8491f486032ad3feceefd3596f748e0de4f /src/platforms/windows/windowsSocket.cpp | |
| parent | Trivial 64-bit warning fixes. (diff) | |
| parent | remove stray argument from windowsSocket::sendRawNonBlocking (diff) | |
| download | vmime-f2c94976be09f2e992e99ad3db470a4998a4d174.tar.gz vmime-f2c94976be09f2e992e99ad3db470a4998a4d174.zip | |
Merge pull request #15 from mabrand/fix-sendRawNonBlocking
remove stray argument from windowsSocket::sendRawNonBlocking
Diffstat (limited to 'src/platforms/windows/windowsSocket.cpp')
| -rw-r--r-- | src/platforms/windows/windowsSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platforms/windows/windowsSocket.cpp b/src/platforms/windows/windowsSocket.cpp index 7f58e279..dc6f1b47 100644 --- a/src/platforms/windows/windowsSocket.cpp +++ b/src/platforms/windows/windowsSocket.cpp @@ -270,7 +270,7 @@ void windowsSocket::sendRaw(const char* buffer, const size_type count) } -windowsSocket::size_type windowsSocket::sendRawNonBlocking(const char* buffer, const size_type count, const bool block) +windowsSocket::size_type windowsSocket::sendRawNonBlocking(const char* buffer, const size_type count) { m_status &= ~STATUS_WOULDBLOCK; |
