summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Object/Archive.cpp
diff options
context:
space:
mode:
authorFangrui Song <maskray@google.com>2019-09-20 04:40:38 +0000
committerFangrui Song <maskray@google.com>2019-09-20 04:40:38 +0000
commita5db9ee71f81310f89204cde1dfb54fea9bd92f1 (patch)
treec8432311b443a99bfe8e818749ca492dcc33d774 /llvm/lib/Object/Archive.cpp
parent4aef105b43076e18e2d272a77491adc9533f5f3f (diff)
downloadbcm5719-llvm-a5db9ee71f81310f89204cde1dfb54fea9bd92f1.tar.gz
bcm5719-llvm-a5db9ee71f81310f89204cde1dfb54fea9bd92f1.zip
[Object] Uncapitalize an error message
Test case will be added by my next commit. llvm-svn: 372369
Diffstat (limited to 'llvm/lib/Object/Archive.cpp')
-rw-r--r--llvm/lib/Object/Archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/Archive.cpp b/llvm/lib/Object/Archive.cpp
index fd9609f65bc..148c011d9cd 100644
--- a/llvm/lib/Object/Archive.cpp
+++ b/llvm/lib/Object/Archive.cpp
@@ -550,7 +550,7 @@ Archive::Archive(MemoryBufferRef Source, Error &Err)
} else if (Buffer.startswith(Magic)) {
IsThin = false;
} else {
- Err = make_error<GenericBinaryError>("File too small to be an archive",
+ Err = make_error<GenericBinaryError>("file too small to be an archive",
object_error::invalid_file_type);
return;
}
OpenPOWER on IntegriCloud