diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2014-07-10 05:25:39 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2014-07-10 05:25:39 +0000 |
commit | b35103ebb9aafd978f52201b542689f706914063 (patch) | |
tree | db9ae7c130577c4d9ed7fecf0c7909b449a53355 /lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | |
parent | 1e76cbdff7491bd2eddda8c63589ac06f6496286 (diff) | |
download | bcm5719-llvm-b35103ebb9aafd978f52201b542689f706914063.tar.gz bcm5719-llvm-b35103ebb9aafd978f52201b542689f706914063.zip |
Fix a type mismatch in NativeProcessLinux that shows up in 32-bit builds.
http://llvm.org/bugs/show_bug.cgi?id=20255
llvm-svn: 212685
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp index e472d92a125..284450f330b 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp @@ -499,7 +499,7 @@ namespace lldb::addr_t addr, void *buff, lldb::addr_t size, - size_t &result) : + lldb::addr_t &result) : Operation (), m_addr (addr), m_buff (buff), |