Skip to content

Commit 1f6059c

Browse files
committed
fixup! fix LLDB_LOG_ERROR argument error
1 parent eabbf72 commit 1f6059c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Expression/IRExecutionUnit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ lldb::addr_t IRExecutionUnit::FindSymbol(lldb_private::ConstString name,
947947
auto label_or_err = FunctionCallLabel::fromString(name);
948948
if (!label_or_err) {
949949
LLDB_LOG_ERROR(GetLog(LLDBLog::Expressions), label_or_err.takeError(),
950-
"failed to create FunctionCallLabel from '{0}': {1}",
950+
"failed to create FunctionCallLabel from '{1}': {0}",
951951
name.GetStringRef());
952952
return LLDB_INVALID_ADDRESS;
953953
}

0 commit comments

Comments
 (0)