forked from OSchip/llvm-project
[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
This commit is contained in:
parent
ae4c026765
commit
c5638f915b
|
@ -231,7 +231,7 @@ CMICmnLLDBDebugSessionInfo::GetThreadFrames(const SMICmdData &vCmdData, const MI
|
||||||
// MI print
|
// 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\"},
|
// "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++)
|
for (MIuint nLevel = 0; nLevel < nFrames; nLevel++)
|
||||||
{
|
{
|
||||||
CMICmnMIValueTuple miValueTuple;
|
CMICmnMIValueTuple miValueTuple;
|
||||||
|
@ -240,11 +240,11 @@ CMICmnLLDBDebugSessionInfo::GetThreadFrames(const SMICmdData &vCmdData, const MI
|
||||||
|
|
||||||
const CMICmnMIValueResult miValueResult2("frame", miValueTuple);
|
const CMICmnMIValueResult miValueResult2("frame", miValueTuple);
|
||||||
if (nLevel != 0)
|
if (nLevel != 0)
|
||||||
strListCommaSeperated += ",";
|
strListCommaSeparated += ",";
|
||||||
strListCommaSeperated += miValueResult2.GetString();
|
strListCommaSeparated += miValueResult2.GetString();
|
||||||
}
|
}
|
||||||
|
|
||||||
vwrThreadFrames = strListCommaSeperated;
|
vwrThreadFrames = strListCommaSeparated;
|
||||||
|
|
||||||
return MIstatus::success;
|
return MIstatus::success;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue