From 2d7b2584acf123ea15f8e929f6dc56673dfbed3f Mon Sep 17 00:00:00 2001 From: James Henderson Date: Fri, 1 Nov 2019 14:07:34 +0000 Subject: [PATCH] [Object] Remove extra space in error message Previously this message had a double space in it. --- include/llvm/Object/ELF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h index 5a13097a927..0d5482ae831 100644 --- a/include/llvm/Object/ELF.h +++ b/include/llvm/Object/ELF.h @@ -644,7 +644,7 @@ ELFFile::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;