mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
Fixed issue with binary files in windows, http://www.lua.org/pil/21.2.2.html
This commit is contained in:
parent
4c367827b5
commit
6cacefa48d
1 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ local function main(args)
|
|||
end
|
||||
-- Validate the parameters
|
||||
|
||||
local infile = io.open(input, "r")
|
||||
local infile = io.open(input, "rb")
|
||||
if infile == nil then
|
||||
return oops("Could not read file ", input)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue