[llvm] 5a7ae63 - [Object] Remove extra space in error message

James Henderson via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 1 07:08:58 PDT 2019


Author: James Henderson
Date: 2019-11-01T14:08:22Z
New Revision: 5a7ae6321ebededd5a5e8c8c331ea54cc30c4198

URL: https://github.com/llvm/llvm-project/commit/5a7ae6321ebededd5a5e8c8c331ea54cc30c4198
DIFF: https://github.com/llvm/llvm-project/commit/5a7ae6321ebededd5a5e8c8c331ea54cc30c4198.diff

LOG: [Object] Remove extra space in error message

Previously this message had a double space in it.

Added: 
    

Modified: 
    llvm/include/llvm/Object/ELF.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Object/ELF.h b/llvm/include/llvm/Object/ELF.h
index 5a13097a9276..0d5482ae831d 100644
--- a/llvm/include/llvm/Object/ELF.h
+++ b/llvm/include/llvm/Object/ELF.h
@@ -644,7 +644,7 @@ ELFFile<ELFT>::getSHNDXTable(const Elf_Shdr &Section,
   uint64_t Syms = SymTable.sh_size / sizeof(Elf_Sym);
   if (V.size() != Syms)
     return createError("SHT_SYMTAB_SHNDX has " + Twine(V.size()) +
-                       "  entries, but the symbol table associated has " +
+                       " entries, but the symbol table associated has " +
                        Twine(Syms));
 
   return V;


        


More information about the llvm-commits mailing list