diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-07 14:26:28 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-07 14:26:28 +0000 |
| commit | c5638f915bd51f7c009fc76e37f09b9b8f618204 (patch) | |
| tree | b178faa38c1ac36f6e92d51529c502873cfd8fcc /lldb | |
| parent | ae4c026765cfa7cb194490e6e0ba6d8747771fd8 (diff) | |
| download | bcm5719-llvm-c5638f915bd51f7c009fc76e37f09b9b8f618204.tar.gz bcm5719-llvm-c5638f915bd51f7c009fc76e37f09b9b8f618204.zip | |
[lldb-mi] Fix typo in variable name.
Seperated -> Separated.
Summary: [lldb-mi] Fix typo in variable name.
Reviewers: abidh, ki.stfu
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D10992
llvm-svn: 241586
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp b/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp index 6a553a89b7a..cf74fe58fbd 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp +++ b/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp @@ -231,7 +231,7 @@ CMICmnLLDBDebugSessionInfo::GetThreadFrames(const SMICmdData &vCmdData, const MI // MI print // "frame={level=\"%d\",addr=\"0x%016" PRIx64 "\",func=\"%s\",args=[%s],file=\"%s\",fullname=\"%s\",line=\"%d\"},frame={level=\"%d\",addr=\"0x%016" PRIx64 "\",func=\"%s\",args=[%s],file=\"%s\",fullname=\"%s\",line=\"%d\"}, // ..." - CMIUtilString strListCommaSeperated; + CMIUtilString strListCommaSeparated; for (MIuint nLevel = 0; nLevel < nFrames; nLevel++) { CMICmnMIValueTuple miValueTuple; @@ -240,11 +240,11 @@ CMICmnLLDBDebugSessionInfo::GetThreadFrames(const SMICmdData &vCmdData, const MI const CMICmnMIValueResult miValueResult2("frame", miValueTuple); if (nLevel != 0) - strListCommaSeperated += ","; - strListCommaSeperated += miValueResult2.GetString(); + strListCommaSeparated += ","; + strListCommaSeparated += miValueResult2.GetString(); } - vwrThreadFrames = strListCommaSeperated; + vwrThreadFrames = strListCommaSeparated; return MIstatus::success; } |

