Skip to content

Commit

Permalink
Fixed invalid args count comparison in process_ipl.py
Browse files Browse the repository at this point in the history
  • Loading branch information
webhdx committed Aug 20, 2023
1 parent 154739c commit 572a314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process_ipl.py
Expand Up @@ -123,7 +123,7 @@ def process_scrambled_ipl(ipl, size):
return payload

def main():
if len(sys.argv) != 4:
if len(sys.argv) != 3:
print(f"Usage: {sys.argv[0]} <executable> <output>")
return -1

Expand Down

0 comments on commit 572a314

Please sign in to comment.