Fix a type mismatch in NativeProcessLinux that shows up in 32-bit builds.
authorTodd Fiala <todd.fiala@gmail.com>
Thu, 10 Jul 2014 05:25:39 +0000 (05:25 +0000)
committerTodd Fiala <todd.fiala@gmail.com>
Thu, 10 Jul 2014 05:25:39 +0000 (05:25 +0000)
http://llvm.org/bugs/show_bug.cgi?id=20255

llvm-svn: 212685

lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp

index e472d92..284450f 100644 (file)
@@ -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),