summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBreno Rodrigues Guimaraes <brenorg@gmail.com>2023-02-22 06:51:28 -0300
committerBreno Rodrigues Guimaraes <brenorg@gmail.com>2023-02-22 06:51:28 -0300
commit991bf3a4ff094e4d09b9bf72f058393ae44e4a94 (patch)
tree84bb97d4e6dc72d734d7aced2919db646913baa3
parent0611392aaae61da0c4fb0b41b4fb98a19d4b910f (diff)
downloadpatchelf-991bf3a4ff094e4d09b9bf72f058393ae44e4a94.tar.gz
Fixup
-rw-r--r--src/patchelf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/patchelf.cc b/src/patchelf.cc
index 924c4cf..a4388f9 100644
--- a/src/patchelf.cc
+++ b/src/patchelf.cc
@@ -2563,7 +2563,7 @@ static int mainWrapped(int argc, char * * argv)
if (!(iss >> to))
error(fmt(fname, ":", lineCount, ": Map file line is missing the second element"));
if (symbolsToRenameKeys.count(from))
- error(fmt(fname, ":", lineCount, ": Name ", from, " appears twice in the map file"));
+ error(fmt(fname, ":", lineCount, ": Name '", from, "' appears twice in the map file"));
if (from.find('@') != std::string_view::npos || to.find('@') != std::string_view::npos)
error(fmt(fname, ":", lineCount, ": Name pair contains version tag: ", from, " ", to));
lineCount++;