~taiite/protodump

a3de0bcd222bc5676755f8b9571f89189cb40d8d — Hubert Hirtz 6 months ago 3f54b06
s/Container type/Container/

Only one word is easier for parsing and also faster since that's 5 less
bytes to copy to kernel memory!
1 files changed, 2 insertions(+), 2 deletions(-)

M src/main.rs
M src/main.rs => src/main.rs +2 -2
@@ 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 {