From 01269740b3981ade2acb3a2af9f44d4b7f464a6e Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Tue, 13 May 2014 10:54:46 +0200 Subject: [PATCH] Remove redundant "'" around linkage names in diff reports * src/abg-comparison.cc (corpus_diff::report): Remove the redundant "'" from the linkage names in the diff. Signed-off-by: Dodji Seketeli --- src/abg-comparison.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abg-comparison.cc b/src/abg-comparison.cc index 7e33cb25..e13a78ef 100644 --- a/src/abg-comparison.cc +++ b/src/abg-comparison.cc @@ -6136,7 +6136,7 @@ corpus_diff::report(ostream& out, const string& indent) const << "'"; if (context()->show_linkage_names()) out << " {" << i->second->get_linkage_name() << "}"; - out << "'\n"; + out << "\n"; ++removed; } if (removed)