summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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++;