Skip to content

Commit

Permalink
gaps: fix gap when before a partition in extended
Browse files Browse the repository at this point in the history
  • Loading branch information
dbungert committed Apr 7, 2023
1 parent 36c11d8 commit f19500d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subiquity/common/filesystem/gaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def maybe_add_gap(start, end, in_extended):
if part is None:
gap_end = ad(device.size - info.min_end_offset)
else:
gap_end = ad(part.offset)
gap_end = ad(part.offset - info.ebr_space)

gap_start = au(prev_end)

Expand Down

0 comments on commit f19500d

Please sign in to comment.