Skip to content

Commit

Permalink
!fixup use wide flag to avoid wrapped lines
Browse files Browse the repository at this point in the history
  • Loading branch information
zdykstra committed Oct 24, 2023
1 parent a3d186a commit 8e5d2d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/generate-zbm
Original file line number Diff line number Diff line change
Expand Up @@ -791,13 +791,13 @@ sub createUEFIBundle {
}

# Determine initial UKI offset value
@cmd = qw(objdump -h);
@cmd = qw(objdump -w -h);
push( @cmd, $uefi_stub );

@output = execute(@cmd);
$status = pop(@output);
if ( $status eq 0 ) {
my @sizes = split( /\s+/, @output[ scalar @output - 2 ] );
my @sizes = split( /\s+/, @output[ scalar @output - 1 ] );
my $size = "0x" . $sizes[3];
my $vma = "0x" . $sizes[4];

Expand Down

0 comments on commit 8e5d2d0

Please sign in to comment.