summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorr4dish <ovitnez@gmail.com>2023-04-04 02:17:34 +0300
committerr4dish <ovitnez@gmail.com>2023-04-04 02:17:34 +0300
commita24ab2cd92bbeddb9c1780cdaae6d60745144f8c (patch)
treedc82fd39f29c3a3b5e77727f2b946722a577427f /src/net
parentc9ebca67ba33cc2e132cc19e51d52ec2d275fac1 (diff)
Fix a few warnings reported by MSVC compiler
Diffstat (limited to 'src/net')
-rw-r--r--src/net/BoostHttpOnlySslClient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/BoostHttpOnlySslClient.cpp b/src/net/BoostHttpOnlySslClient.cpp
index 82bd897..30279e6 100644
--- a/src/net/BoostHttpOnlySslClient.cpp
+++ b/src/net/BoostHttpOnlySslClient.cpp
@@ -59,7 +59,7 @@ string BoostHttpOnlySslClient::makeRequest(const Url& url, const vector<HttpReqA
// We'll need to get the underlying native socket for this select call, in order
// to add a simple timeout on the read:
- int nativeSocket = socket.lowest_layer().native_handle();
+ int nativeSocket = static_cast<int>(socket.lowest_layer().native_handle());
FD_SET(nativeSocket,&fileDescriptorSet);
select(nativeSocket+1,&fileDescriptorSet,NULL,NULL,&timeStruct);