Skip to content

Commit 088d3dc

Browse files
Merge pull request #10539 from adrian-prantl/cherry-pick-swift-release-6.2-lldb-Quote-module-name-in-error-message-137083
[Cherry-pick into swift/release/6.2] [lldb] Quote module name in error message (llvm#137083)
2 parents bc3f984 + 34f9daf commit 088d3dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
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)