summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBhushan D. Attarde <Bhushan.Attarde@imgtec.com>2015-03-12 09:17:22 +0000
committerBhushan D. Attarde <Bhushan.Attarde@imgtec.com>2015-03-12 09:17:22 +0000
commit9425b329c8f72b3ea6b5fdb771e4a339afcd5e10 (patch)
tree9dd65ab7fbae82b2c624ca44af4dceb8738f37e2
parent2df54a07bfb843e5fbd83573aefc3422081c5126 (diff)
downloadbcm5719-llvm-9425b329c8f72b3ea6b5fdb771e4a339afcd5e10.tar.gz
bcm5719-llvm-9425b329c8f72b3ea6b5fdb771e4a339afcd5e10.zip
Test Commit: Spell correction
llvm-svn: 232022
-rw-r--r--lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
index 78b98f29d36..9c7198e0d3c 100644
--- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
+++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
@@ -711,7 +711,7 @@ namespace
ioVec.iov_base = &regs;
ioVec.iov_len = sizeof regs;
PTRACE(PTRACE_GETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
- if (m_error.Sucess())
+ if (m_error.Success())
{
::memcpy((void *)(((unsigned char *)(&regs)) + offset), m_value.GetBytes(), 16);
PTRACE(PTRACE_SETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
@@ -726,7 +726,7 @@ namespace
ioVec.iov_base = &regs;
ioVec.iov_len = sizeof regs;
PTRACE(PTRACE_GETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
- if (m_error.Sucess())
+ if (m_error.Success())
{
::memcpy((void *)(((unsigned char *)(&regs)) + m_offset), m_value.GetBytes(), 8);
PTRACE(PTRACE_SETREGSET, m_tid, &regset, &ioVec, sizeof regs, m_error);
OpenPOWER on IntegriCloud