Skip to content

Commit

Permalink
typo fix in parse-packets-from-file script
Browse files Browse the repository at this point in the history
  • Loading branch information
xHasKx committed Nov 26, 2023
1 parent ec65e15 commit d970f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/parse-packets-from-file.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ end
print(string.format("-- using protocol version %s", protocol_version_arg))

-- reading hex file
local file = assert(io.open(input_file_arg), "failed to read input file")
local file = assert(io.open(input_file_arg), "failed to open input file")
local hex = file:read("*a")
hex = extract_hex(hex)

Expand Down

0 comments on commit d970f78

Please sign in to comment.