diff options
author | B Stack <bgstack15@gmail.com> | 2019-02-10 16:47:23 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-02-10 16:47:23 -0500 |
commit | a48439992d4b1c896dd0beaff91d0a14361032b9 (patch) | |
tree | 475a67b0b138f2b1cd5f02eaab8e413f7eee62c6 /zen/socket.h | |
parent | Merge branch '10.8' into 'master' (diff) | |
download | FreeFileSync-a48439992d4b1c896dd0beaff91d0a14361032b9.tar.gz FreeFileSync-a48439992d4b1c896dd0beaff91d0a14361032b9.tar.bz2 FreeFileSync-a48439992d4b1c896dd0beaff91d0a14361032b9.zip |
10.9
Diffstat (limited to 'zen/socket.h')
-rw-r--r--[-rwxr-xr-x] | zen/socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/socket.h b/zen/socket.h index 33ac2e50..c77a4084 100755..100644 --- a/zen/socket.h +++ b/zen/socket.h @@ -119,7 +119,7 @@ size_t tryWriteSocket(SocketType socket, const void* buffer, size_t bytesToWrite int bytesWritten = 0; for (;;) { - bytesWritten = ::send(socket, //_In_ SOCKET s, + bytesWritten = ::send(socket, //_In_ SOCKET s, static_cast<const char*>(buffer), //_In_ const char *buf, static_cast<int>(bytesToWrite), //_In_ int len, 0); //_In_ int flags |