Skip to content

Commit bc82236

Browse files
fixup! escape format variables in log message
1 parent 1bf92c9 commit bc82236

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2007,9 +2007,9 @@ bool CPlusPlusLanguage::HandleFrameFormatVariable(
20072007
case FormatEntity::Entry::Type::FunctionQualifiers: {
20082008
auto quals_or_err = GetDemangledFunctionQualifiers(sc);
20092009
if (!quals_or_err) {
2010-
LLDB_LOG_ERROR(
2011-
GetLog(LLDBLog::Language), quals_or_err.takeError(),
2012-
"Failed to handle ${{function.qualifiers}} frame-format variable: {0}");
2010+
LLDB_LOG_ERROR(GetLog(LLDBLog::Language), quals_or_err.takeError(),
2011+
"Failed to handle ${{function.qualifiers}} frame-format "
2012+
"variable: {0}");
20132013
return false;
20142014
}
20152015

0 commit comments

Comments
 (0)