From 8421e1ef03266a443efaf32cddb39d2d2f555e79 Mon Sep 17 00:00:00 2001 From: Horst Schirmeier Date: Mon, 6 Jul 2020 17:33:04 +0200 Subject: [PATCH] import-trace: diagnostics typo Change-Id: Ic02f66884a300dd081c61ac911cd3d5767f08744 --- tools/import-trace/RegisterImporter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/import-trace/RegisterImporter.cc b/tools/import-trace/RegisterImporter.cc index ad240180..05606edc 100644 --- a/tools/import-trace/RegisterImporter.cc +++ b/tools/import-trace/RegisterImporter.cc @@ -226,7 +226,7 @@ bool RegisterImporter::trace_end_reached() const RegNotFound& rnf = it->second; LOG << "Capstone register " << std::dec << id /* << " \"" << disas->getRegisterInfo().getName(id) << "\": " */ - << "seen " << rnf.count << " times in the trace" << std::endl; + << " seen " << rnf.count << " times in the trace" << std::endl; std::ostream& o = LOG << " corresponding instruction addresses in ELF binary: " << std::hex; for (auto addr_it = rnf.address.cbegin(); addr_it != rnf.address.cend(); ++addr_it) { if (addr_it != rnf.address.cbegin()) {