diff options
Diffstat (limited to 'llvm/tools/llvm-objcopy/llvm-objcopy.cpp')
-rw-r--r-- | llvm/tools/llvm-objcopy/llvm-objcopy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-objcopy/llvm-objcopy.cpp b/llvm/tools/llvm-objcopy/llvm-objcopy.cpp index 35ffed8..dfa66ef 100644 --- a/llvm/tools/llvm-objcopy/llvm-objcopy.cpp +++ b/llvm/tools/llvm-objcopy/llvm-objcopy.cpp @@ -53,7 +53,7 @@ namespace objcopy { StringRef ToolName; LLVM_ATTRIBUTE_NORETURN void error(Twine Message) { - WithColor::error(errs(), ToolName) << Message << ".\n"; + WithColor::error(errs(), ToolName) << Message << "\n"; errs().flush(); exit(1); } @@ -154,7 +154,7 @@ static Error executeObjcopyOnBinary(const CopyConfig &Config, return macho::executeObjcopyOnBinary(Config, *MachOBinary, Out); else return createStringError(object_error::invalid_file_type, - "Unsupported object file format"); + "unsupported object file format"); } static Error executeObjcopyOnArchive(const CopyConfig &Config, |