aboutsummaryrefslogtreecommitdiff
path: root/heuristic_ensemble_matcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'heuristic_ensemble_matcher.cc')
-rw-r--r--heuristic_ensemble_matcher.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/heuristic_ensemble_matcher.cc b/heuristic_ensemble_matcher.cc
index aead5dc..1e99d5b 100644
--- a/heuristic_ensemble_matcher.cc
+++ b/heuristic_ensemble_matcher.cc
@@ -68,8 +68,9 @@ bool UnsafeDifference(const Element& old_element, const Element& new_element) {
}
std::ostream& operator<<(std::ostream& stream, const Element& elt) {
- stream << "(" << elt.exe_type << ", " << AsHex<8, size_t>(elt.offset) << " +"
- << AsHex<8, size_t>(elt.size) << ")";
+ stream << "(" << CastExecutableTypeToString(elt.exe_type) << ", "
+ << AsHex<8, size_t>(elt.offset) << " +" << AsHex<8, size_t>(elt.size)
+ << ")";
return stream;
}