Skip to content

Commit 991bf3a

Browse files
committed
Fixup
1 parent 0611392 commit 991bf3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/patchelf.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,7 @@ static int mainWrapped(int argc, char * * argv)
25632563
if (!(iss >> to))
25642564
error(fmt(fname, ":", lineCount, ": Map file line is missing the second element"));
25652565
if (symbolsToRenameKeys.count(from))
2566-
error(fmt(fname, ":", lineCount, ": Name ", from, " appears twice in the map file"));
2566+
error(fmt(fname, ":", lineCount, ": Name '", from, "' appears twice in the map file"));
25672567
if (from.find('@') != std::string_view::npos || to.find('@') != std::string_view::npos)
25682568
error(fmt(fname, ":", lineCount, ": Name pair contains version tag: ", from, " ", to));
25692569
lineCount++;

0 commit comments

Comments
 (0)