From 69b452c119efc58941708e98c9d9707e48ff6f76 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 22 Jun 2010 13:39:44 -0700 Subject: [PATCH] sysdump, be_srec: increment the address Need to increment the address for each srec... Signed-off-by: H. Peter Anvin --- com32/sysdump/be_srec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/com32/sysdump/be_srec.c b/com32/sysdump/be_srec.c index 3b52b1a..fc69c88 100644 --- a/com32/sysdump/be_srec.c +++ b/com32/sysdump/be_srec.c @@ -68,6 +68,7 @@ static int be_srec_write(struct backend *be) write_srecord(chunk, 4, offset, '3', buf); buf += chunk; len -= chunk; + offset += chunk; } /* Write termination record */ -- 2.7.4