1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

[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 b9b9ff8406
commit 2d7b2584ac

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;