Fixed linebreak error

This commit is contained in:
martin.holst@gmail.com 2013-10-20 19:05:52 +00:00
parent b3123cf603
commit 412afdb87b

View file

@ -59,8 +59,7 @@ local utils = {
local formatString = string.format("H%d", string.len(block)) local formatString = string.format("H%d", string.len(block))
local _,hex = bin.unpack(formatString,block) local _,hex = bin.unpack(formatString,block)
file:write(hex) file:write(hex.."\n")
file:write(0x0A) -- Line feed
end end
file:close() file:close()
return destination return destination