Skip to content

Commit

Permalink
Improve "cannot find section" error message
Browse files Browse the repository at this point in the history
Issue #66
  • Loading branch information
edolstra committed May 3, 2016
1 parent 0ea5aff commit 0ed7193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/patchelf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ Elf_Shdr & ElfFile<ElfFileParamNames>::findSection(const SectionName & sectionNa
{
Elf_Shdr * shdr = findSection2(sectionName);
if (!shdr)
error("cannot find section " + sectionName);
error("cannot find section '" + sectionName + "'");
return *shdr;
}

Expand Down

0 comments on commit 0ed7193

Please sign in to comment.