Index: runtime/bin/socket_linux.cc |
diff --git a/runtime/bin/socket_linux.cc b/runtime/bin/socket_linux.cc |
index c3c01cc89c9978be867b0511786a3d9083ff3cf9..c7bc9bfe4d71b0d424f4594bb3884d3fd4699fbe 100644 |
--- a/runtime/bin/socket_linux.cc |
+++ b/runtime/bin/socket_linux.cc |
@@ -168,8 +168,8 @@ void Socket::GetError(intptr_t fd, OSError* os_error) { |
int Socket::GetType(intptr_t fd) { |
- struct stat buf; |
- int result = fstat(fd, &buf); |
+ struct stat64 buf; |
+ int result = fstat64(fd, &buf); |
if (result == -1) return -1; |
if (S_ISCHR(buf.st_mode)) return File::kTerminal; |
if (S_ISFIFO(buf.st_mode)) return File::kPipe; |