Skip to content

Commit

Permalink
boot-uml.py: Fix stray 'i' in decomp_rootfs()
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
  • Loading branch information
nathanchance committed Aug 4, 2022
1 parent 056d168 commit 8e7d671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boot-uml.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def decomp_rootfs():
subprocess.run(["zstd", "-q", "-d", "{}.zst".format(rootfs), "-o", rootfs],
check=True)

return rootfsi
return rootfs


def run_kernel(kernel, rootfs, interactive):
Expand Down

0 comments on commit 8e7d671

Please sign in to comment.