From 991bf3a4ff094e4d09b9bf72f058393ae44e4a94 Mon Sep 17 00:00:00 2001 From: Breno Rodrigues Guimaraes Date: Wed, 22 Feb 2023 06:51:28 -0300 Subject: Fixup --- src/patchelf.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; -- cgit v1.2.1