@@ 73,7 73,7 @@ impl PartialEq for ObjectInfo<'_> {
fn show_object_info_diff(prev: &ObjectInfo<'_>, next: &ObjectInfo<'_>) {
if prev.container_type != next.container_type {
eprintln!(
- "Container type: {} {}",
+ "Container: {} {}",
Paint::red(format_args!("-{:?}", prev.container_type)),
Paint::green(format_args!("+{:?}", next.container_type)),
);
@@ 533,7 533,7 @@ fn main() -> Result<()> {
}
} else {
eprintln!("OBJECT FILE {}", path);
- eprintln!("Container type: {:?}", object_info.container_type);
+ eprintln!("Container: {:?}", object_info.container_type);
if object_info.is_little_endian {
eprintln!("Endianness: little");
} else {