Skip to content

Commit 3c8c500

Browse files
authored
[LLDB][NFC] Fix variable casing issue (#161691)
Fixes some casing mistakes I added in #161581
1 parent 407ecfe commit 3c8c500

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/source/API/SBTarget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ SBProcess SBTarget::LoadCore(const char *core_file, lldb::SBError &error) {
255255
ProcessSP process_sp(target_sp->CreateProcess(
256256
target_sp->GetDebugger().GetListener(), "", &filespec, false));
257257
if (process_sp) {
258-
ElapsedTime loadCoreTime(target_sp->GetStatistics().GetLoadCoreTime());
258+
ElapsedTime load_core_time(target_sp->GetStatistics().GetLoadCoreTime());
259259
error.SetError(process_sp->LoadCore());
260260
if (error.Success())
261261
sb_process.SetSP(process_sp);

lldb/source/Commands/CommandObjectTarget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ class CommandObjectTargetCreate : public CommandObjectParsed {
419419
// Seems weird that we Launch a core file, but that is what we
420420
// do!
421421
{
422-
ElapsedTime loadCoreTime(
422+
ElapsedTime load_core_time(
423423
target_sp->GetStatistics().GetLoadCoreTime());
424424
error = process_sp->LoadCore();
425425
}

0 commit comments

Comments
 (0)