[Lldb-commits] [PATCH] D132709: [lldb][ClangExpression] Fix LLDB_LOG incorrect format specifier
Michael Buch via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 26 02:07:17 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2b95b50dd69b: [lldb][ClangExpression] Fix LLDB_LOG incorrect format specifier (authored by Michael137).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132709/new/
https://reviews.llvm.org/D132709
Files:
lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
Index: lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
===================================================================
--- lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
+++ lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
@@ -405,7 +405,7 @@
if (const NamedDecl *context_named_decl = dyn_cast<NamedDecl>(context_decl))
LLDB_LOG(log,
"FindExternalLexicalDecls on (ASTContext*){0} '{1}' in "
- "'{2}' (%sDecl*){3}",
+ "'{2}' ({3}Decl*){4}",
m_ast_context, m_clang_ast_context->getDisplayName(),
context_named_decl->getNameAsString().c_str(),
context_decl->getDeclKindName(),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132709.455835.patch
Type: text/x-patch
Size: 724 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220826/77a329ec/attachment.bin>
More information about the lldb-commits
mailing list