| Index: base/linux_util.cc
|
| diff --git a/base/linux_util.cc b/base/linux_util.cc
|
| index 5f9ecd43ab11b1199b4a55a1556e64a433e8431a..f8dd2d0088b8cb0482e32b0c2efd9efa34a77db0 100644
|
| --- a/base/linux_util.cc
|
| +++ b/base/linux_util.cc
|
| @@ -287,8 +287,7 @@ pid_t FindThreadIDWithSyscall(pid_t pid, const std::string& expected_data,
|
| continue;
|
| if (syscall_supported != NULL)
|
| *syscall_supported = true;
|
| - bool read_ret =
|
| - file_util::ReadFromFD(fd, syscall_data.get(), expected_data.length());
|
| + bool read_ret = ReadFromFD(fd, syscall_data.get(), expected_data.length());
|
| close(fd);
|
| if (!read_ret)
|
| continue;
|
|
|