From: David Brownell Date: Tue, 19 Jan 2010 21:56:33 +0000 (-0800) Subject: NOR: fix diagnostic X-Git-Tag: v0.4.0-rc2~72 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fb4239866c6a9aa429b58be7488a93ec1245597b;p=openocd NOR: fix diagnostic The "NOR: last_addr also needs correction when checking alignment" patch omitted a necessary update to the key diagnostic; fix. Signed-off-by: David Brownell --- diff --git a/src/flash/nor/core.c b/src/flash/nor/core.c index 277da38c..2c615192 100644 --- a/src/flash/nor/core.c +++ b/src/flash/nor/core.c @@ -408,7 +408,7 @@ static int flash_iterate_address_range(struct target *target, LOG_ERROR("address range 0x%8.8x .. 0x%8.8x " "is not sector-aligned", (unsigned) (c->base + addr), - (unsigned) (last_addr - 1)); + (unsigned) (c->base + last_addr - 1)); return ERROR_FLASH_DST_BREAKS_ALIGNMENT; }