From 0bd645d3707dce452663d4634495155321a6fd1c Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sun, 29 May 2022 13:42:22 +0200 Subject: [PATCH] [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 --- clang/tools/libclang/CIndexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/tools/libclang/CIndexer.cpp b/clang/tools/libclang/CIndexer.cpp index 41f06a83553a..dab3fc4e201d 100644 --- a/clang/tools/libclang/CIndexer.cpp +++ b/clang/tools/libclang/CIndexer.cpp @@ -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