[Object] Remove extra space in error message

Previously this message had a double space in it.
This commit is contained in:
James Henderson 2019-11-01 14:07:34 +00:00
parent be79db93fb
commit 5a7ae6321e
1 changed files with 1 additions and 1 deletions

View File

@ -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;