From: martin.holst@gmail.com Date: Sun, 20 Oct 2013 19:05:52 +0000 (+0000) Subject: Fixed linebreak error X-Git-Tag: v1.0.0~31 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/412afdb87bd24b761a9cbc492da361e79f12d76c Fixed linebreak error --- diff --git a/client/scripts/ndef_dump.lua b/client/scripts/ndef_dump.lua index f89f6db2..da1a1ef2 100644 --- a/client/scripts/ndef_dump.lua +++ b/client/scripts/ndef_dump.lua @@ -59,8 +59,7 @@ local utils = { local formatString = string.format("H%d", string.len(block)) local _,hex = bin.unpack(formatString,block) - file:write(hex) - file:write(0x0A) -- Line feed + file:write(hex.."\n") end file:close() return destination