diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-10-20 17:11:32 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-10-20 17:11:32 -0400 |
commit | 98c383e7e7b7f7e0bc9964e3d18f9aaa3539ff59 (patch) | |
tree | 6f6c8fbe44d49e129b836b7426a6f7c05bb05586 /src/mongo/util/net | |
parent | f13e5ad084191e1b38992817c5796bbf6e6e9551 (diff) | |
download | mongo-98c383e7e7b7f7e0bc9964e3d18f9aaa3539ff59.tar.gz |
SERVER-17414 Enable Warnings As Errors on Windows, and disable/fix warnings
Diffstat (limited to 'src/mongo/util/net')
-rw-r--r-- | src/mongo/util/net/sock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/net/sock.h b/src/mongo/util/net/sock.h index c01c9bf3a18..42d69757c60 100644 --- a/src/mongo/util/net/sock.h +++ b/src/mongo/util/net/sock.h @@ -250,7 +250,7 @@ private: /** raw recv, same semantics as ::recv */ int _recv(char* buf, int max); - int _fd; + SOCKET _fd; uint64_t _fdCreationMicroSec; SockAddr _local; SockAddr _remote; |