[libclang] Fix error message capitalization

This was a review suggestion from MaskRay that I forgot to incorporate
in the patch.

See: https://reviews.llvm.org/D124815
This commit is contained in:
Ayke van Laethem 2022-05-29 13:42:22 +02:00
parent 75d12e49c7
commit 0bd645d370
No known key found for this signature in database
GPG Key ID: E97FF5335DFDFDED
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ const std::string &CIndexer::getClangResourcesPath() {
} else {
// It's rather unlikely we end up here. But it could happen, so report an
// error instead of crashing.
llvm::report_fatal_error("Could not locate Clang resource path");
llvm::report_fatal_error("could not locate Clang resource path");
}
#endif