[Lldb-commits] [lldb] r232022 - Test Commit: Spell correction

Bhushan.Attarde at llvm.org Bhushan.Attarde at llvm.org
Thu Mar 12 02:17:22 PDT 2015


Author: Bhushan.Attarde
Date: Thu Mar 12 04:17:22 2015
New Revision: 232022

URL: http://llvm.org/viewvc/llvm-project?rev=232022&view=rev
Log:
Test Commit: Spell correction

Modified:
    lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp

Modified: lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp?rev=232022&r1=232021&r2=232022&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp Thu Mar 12 04:17:22 2015
@@ -711,7 +711,7 @@ namespace
             ioVec.iov_base = ®s;
             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 = ®s;
             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);





More information about the lldb-commits mailing list