Skip to content

Commit 9b9dfb6

Browse files
committed
almost done with printing of load commands
1 parent 30a3b76 commit 9b9dfb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/printer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ fn print_source_version_command(command: &SourceVersionCommand, table: &mut Tabl
472472

473473
fn print_note_command(command: &NoteCommand, table: &mut Table) {
474474
print_lc_cmd_and_cmdsize(command.cmd, command.cmdsize, table);
475-
//TODO: print as bytes...
475+
print_bytes_array("data_owner", &command.data_owner, table);
476476
table.add_row(row![ Fcc->"offset", Fyc->format!("0x{:x}", command.offset), c->"-"]);
477477
table.add_row(row![ Fcc->"size", Fyc->format!("0x{:x}", command.size), c->"-"]);
478478
}

0 commit comments

Comments
 (0)