From 5a7ae6321ebededd5a5e8c8c331ea54cc30c4198 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. --- llvm/include/llvm/Object/ELF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::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;