Skip to content

Commit 34f9daf

Browse files
committed
[lldb] Quote module name in error message (llvm#137083)
rdar://149554634 (cherry picked from commit de2f939)
1 parent c89ea13 commit 34f9daf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ bool ClangModulesDeclVendorImpl::AddModule(const SourceModule &module,
330330
}
331331
}
332332
if (!HS.lookupModule(module.path.front().GetStringRef())) {
333-
error_stream.Printf("error: Header search couldn't locate module %s\n",
333+
error_stream.Printf("error: Header search couldn't locate module '%s'\n",
334334
module.path.front().AsCString());
335335
return false;
336336
}

0 commit comments

Comments
 (0)