diff options
author | Deepak Panickal <deepak@codeplay.com> | 2013-10-22 12:27:43 +0000 |
---|---|---|
committer | Deepak Panickal <deepak@codeplay.com> | 2013-10-22 12:27:43 +0000 |
commit | d66b50c96c3bd03cf5ab2255ea770f70c65426b8 (patch) | |
tree | 44416e9c02d36a3c8cafa1f34a4428f3e0023b55 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | |
parent | 0229c09d431af50fcbff953aa54d30f15691aae8 (diff) | |
download | bcm5719-llvm-d66b50c96c3bd03cf5ab2255ea770f70c65426b8.tar.gz bcm5719-llvm-d66b50c96c3bd03cf5ab2255ea770f70c65426b8.zip |
Fixes to get LLDB building on Windows again.
llvm-svn: 193159
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index 7761b166d1c..dc4fa10f8c2 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -2596,7 +2596,7 @@ GDBRemoteCommunicationClient::CloseFile (lldb::user_id_t fd, { return ParseHostIOPacketResponse (response, -1, error) == 0; } - return UINT64_MAX; + return false; } // Extension of host I/O packets to get the file size. |