]> granicus.if.org Git - llvm/commitdiff
[Object] Uncapitalize an error message
authorFangrui Song <maskray@google.com>
Fri, 20 Sep 2019 04:40:38 +0000 (04:40 +0000)
committerFangrui Song <maskray@google.com>
Fri, 20 Sep 2019 04:40:38 +0000 (04:40 +0000)
Test case will be added by my next commit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@372369 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Object/Archive.cpp

index fd9609f65bc0bfa83eba1ebfd65881c09d6d5016..148c011d9cd4c98657e2a6f910536225f4964964 100644 (file)
@@ -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;
   }