From 8ec301a340eccc3581c3a0ce6b1ad300a886a37a Mon Sep 17 00:00:00 2001
From: Marius Greuel <greuelm@mgtek.com>
Date: Sun, 15 Apr 2018 21:45:12 +0200
Subject: [PATCH] Change Intel HEX line length from 32 to 16 to match line
 length of avr-objcopy

---
 fileio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fileio.c b/fileio.c
index f2d61782..244ba64b 100644
--- a/fileio.c
+++ b/fileio.c
@@ -1157,7 +1157,7 @@ static int fileio_ihex(struct fioparms * fio,
 
   switch (fio->op) {
     case FIO_WRITE:
-      rc = b2ihex(mem->buf, size, 32, fio->fileoffset, filename, f);
+      rc = b2ihex(mem->buf, size, 16, fio->fileoffset, filename, f);
       if (rc < 0) {
         return -1;
       }