Revision: 16524
Author:   [email protected]
Date:     Wed Sep  4 11:33:51 2013 UTC
Log:      Build fix for Win64 after r16521.

[email protected]

Review URL: https://codereview.chromium.org/23850003
http://code.google.com/p/v8/source/detail?r=16524

Modified:
 /branches/bleeding_edge/src/platform/socket.cc

=======================================
--- /branches/bleeding_edge/src/platform/socket.cc Wed Sep 4 10:41:51 2013 UTC +++ /branches/bleeding_edge/src/platform/socket.cc Wed Sep 4 11:33:51 2013 UTC
@@ -128,7 +128,8 @@
   for (struct addrinfo* ai = info; ai != NULL; ai = ai->ai_next) {
     // Try to connect using this addr info.
     while (true) {
-      result = ::connect(native_handle_, ai->ai_addr, ai->ai_addrlen);
+      result = ::connect(
+          native_handle_, ai->ai_addr, static_cast<int>(ai->ai_addrlen));
       if (result == 0) {
         freeaddrinfo(info);
         return true;

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to